customComponents.ts 224 B

12345678910
  1. import type { App } from 'vue'
  2. import { Skeleton } from '@/components/Skeleton'
  3. /**
  4. * 全局注册自定义组件
  5. * @param app
  6. */
  7. export function setupCustomComponents(app: App) {
  8. app.component('Skeleton', Skeleton)
  9. }