lzdjack
2023-01-30 6753e24b3d3d4b2f3d8ce85541a1d624d9bf0fb1
提交 | 用户 | age
d19634 1 import type { App } from 'vue';
73c8e0 2 import { Button } from './Button';
3fcfac 3 import { Input, Layout } from 'ant-design-vue';
6753e2 4 import VXETable from 'vxe-table';
7a6181 5
99ac30 6 export function registerGlobComp(app: App) {
6753e2 7   app.use(Input).use(Button).use(Layout).use(VXETable);
2f6253 8 }