mirror of
https://gitcode.com/gh_mirrors/vue/vue-vben-admin
synced 2025-12-30 13:12:26 +00:00
9 lines
253 B
TypeScript
9 lines
253 B
TypeScript
import type { App } from 'vue';
|
|
import { Button } from './Button';
|
|
import { Input, Layout } from 'ant-design-vue';
|
|
import VXETable from 'vxe-table';
|
|
|
|
export function registerGlobComp(app: App) {
|
|
app.use(Input).use(Button).use(Layout).use(VXETable);
|
|
}
|