index.ts 487 B

12345678910111213
  1. /**
  2. * 全局默认会注册的组件
  3. */
  4. import type { App } from 'vue';
  5. import Iconfont from './iconfont/Iconfont.vue';
  6. import ResizableLayout from './resizable-layout/ResizableLayout.vue';
  7. import ResizableLayoutItem from './resizable-layout/ResizableLayoutItem.vue';
  8. export default function (app: App<Element>) {
  9. app.component(Iconfont.name, Iconfont);
  10. app.component(ResizableLayout.name, ResizableLayout);
  11. app.component(ResizableLayoutItem.name, ResizableLayoutItem);
  12. }