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

8 lines
205 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';
2021-01-09 23:28:52 +08:00
export function registerGlobComp(app: App) {
app.use(Input).use(Button).use(Layout);
2020-09-28 20:19:10 +08:00
}