registerGlobComp.ts 205 B

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