feat: 部分组件重构完成

This commit is contained in:
kailong321200875
2021-10-17 17:01:42 +08:00
parent 0f5c55c36d
commit 3d9622978d
27 changed files with 1790 additions and 78 deletions

View File

@@ -1,6 +1,10 @@
import type { App } from 'vue'
import SvgIcon from './SvgIcon/index.vue' // svg组件
import ComSearch from './Search/index.vue' // search组件
import ComDialog from './Dialog/index.vue' // dialog组件
export function setupGlobCom(app: App<Element>): void {
app.component('SvgIcon', SvgIcon)
app.component('ComSearch', ComSearch)
app.component('ComDialog', ComDialog)
}