fix: 完成首页静态展示内容

This commit is contained in:
MTrun
2021-12-19 19:19:46 +08:00
parent c1daa231b6
commit f37ed1f3d3
29 changed files with 565 additions and 138 deletions
+5 -2
View File
@@ -1,7 +1,10 @@
import type { App } from 'vue'
import { Skeleton } from '@/components/Skeleton'
/**
* 全局注册自定义组件 待完善
* @param app
*/
export function setupCustomComponents() {
// app.component()
export function setupCustomComponents(app: App) {
app.component('Skeleton', Skeleton)
}