2021-12-19 19:19:46 +08:00
|
|
|
import type { App } from 'vue'
|
|
|
|
import { Skeleton } from '@/components/Skeleton'
|
|
|
|
|
2021-12-10 14:11:49 +08:00
|
|
|
/**
|
2022-01-13 16:20:25 +08:00
|
|
|
* 全局注册自定义组件
|
2021-12-10 14:11:49 +08:00
|
|
|
* @param app
|
|
|
|
*/
|
2021-12-19 19:19:46 +08:00
|
|
|
export function setupCustomComponents(app: App) {
|
|
|
|
app.component('Skeleton', Skeleton)
|
2021-12-10 14:11:49 +08:00
|
|
|
}
|