registerGlobComp.ts 210 B

12345678
  1. import type { App } from 'vue'
  2. import { Input, Layout } from 'ant-design-vue'
  3. import { Button } from './Button'
  4. export function registerGlobComp(app: App<Element>) {
  5. app.use(Input).use(Button).use(Layout)
  6. }