wip: vite版重构中

This commit is contained in:
kailong321200875
2021-10-16 09:40:39 +08:00
parent 41ca05dce2
commit a8163874dc
165 changed files with 15146 additions and 145 deletions

6
src/components/index.ts Normal file
View File

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