index.ts 379 B

12345678910
  1. import type { App } from 'vue'
  2. import SvgIcon from './SvgIcon/index.vue' // svg组件
  3. import ComSearch from './Search/index.vue' // search组件
  4. import ComDialog from './Dialog/index.vue' // dialog组件
  5. export function setupGlobCom(app: App<Element>): void {
  6. app.component('SvgIcon', SvgIcon)
  7. app.component('ComSearch', ComSearch)
  8. app.component('ComDialog', ComDialog)
  9. }