go-view/src/plugins/customComponents.ts
2022-01-20 21:25:35 +08:00

13 lines
343 B
TypeScript

import type { App } from 'vue'
import { Skeleton } from '@/components/Skeleton'
import { LoadingComponent } from '@/components/LoadingComponent'
/**
* 全局注册自定义组件
* @param app
*/
export function setupCustomComponents(app: App) {
app.component('Skeleton', Skeleton)
app.component('LoadingComponent', LoadingComponent)
}