12345678910111213 |
- /**
- * 全局默认会注册的组件
- */
- import type { App } from 'vue';
- import Iconfont from './iconfont/Iconfont.vue';
- import ResizableLayout from './resizable-layout/ResizableLayout.vue';
- import ResizableLayoutItem from './resizable-layout/ResizableLayoutItem.vue';
- export default function (app: App<Element>) {
- app.component(Iconfont.name, Iconfont);
- app.component(ResizableLayout.name, ResizableLayout);
- app.component(ResizableLayoutItem.name, ResizableLayoutItem);
- }
|