vue-vben-admin/src/components/registerGlobComp.ts

9 lines
253 B
TypeScript
Raw Normal View History

2021-06-17 21:43:53 +08:00
import type { App } from 'vue';
2020-11-26 21:19:39 +08:00
import { Button } from './Button';
2021-11-10 22:12:10 +08:00
import { Input, Layout } from 'ant-design-vue';
2023-01-30 14:48:04 +08:00
import VXETable from 'vxe-table';
2021-01-09 23:28:52 +08:00
export function registerGlobComp(app: App) {
2023-01-30 14:48:04 +08:00
app.use(Input).use(Button).use(Layout).use(VXETable);
2020-09-28 20:19:10 +08:00
}