fix: 新增列表数据更新,修改数据更新 hook 函数

This commit is contained in:
奔跑的面条
2022-04-02 11:34:54 +08:00
parent 2c2aaaac67
commit 6ae0cd55e6
14 changed files with 210 additions and 135 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
import type { App } from 'vue'
import { GoSkeleton } from '@/components/GoSkeleton'
import { LoadingComponent } from '@/components/LoadingComponent'
import { GoLoading } from '@/components/GoLoading'
import { SketchRule } from 'vue3-sketch-ruler'
/**
@@ -9,6 +9,6 @@ import { SketchRule } from 'vue3-sketch-ruler'
*/
export function setupCustomComponents(app: App) {
app.component('GoSkeleton', GoSkeleton)
app.component('LoadingComponent', LoadingComponent)
app.component('GoLoading', GoLoading)
app.component('SketchRule', SketchRule)
}