vben
2021-11-24 413df9f5e1652307399f14249b688c076e886603
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);
}