UNPKG

@moohng/dui

Version:

基于 Vue 3 的轻量级组件库

12 lines (9 loc) 228 B
import { Plugin } from 'vue' import IconLoading from './icon-loading.vue' export const plugin: Plugin = { install: (app) => { // 注册组件 app.component(IconLoading.name, IconLoading) }, } export default plugin