index.ts 182 B

123456
  1. import type { App } from 'vue'
  2. import Dialog from './Dialog/index.vue'// Dialog组件
  3. export function setupGlobCom(app: App<Element>): void {
  4. app.component('ComDialog', Dialog)
  5. }