vben
2021-11-10 3fcfac1f37c2aeabbb2af4897ada6ba8c225c667
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);
}