/** * 全局默认会注册的组件 */ 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) { app.component(Iconfont.name, Iconfont); app.component(ResizableLayout.name, ResizableLayout); app.component(ResizableLayoutItem.name, ResizableLayoutItem); }