index.ts 373 B

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