registerGlobComp.ts 205 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 import type { App } from 'vue'; import { Button } from './Button'; import { Input, Layout } from 'ant-design-vue'; export function registerGlobComp(app: App) { app.use(Input).use(Button).use(Layout); }