fix: 新增标尺

This commit is contained in:
MTrun
2022-03-15 17:49:02 +08:00
parent 33b0c94159
commit 0933486e6f
8 changed files with 108 additions and 6 deletions
+2
View File
@@ -1,6 +1,7 @@
import type { App } from 'vue'
import { GoSkeleton } from '@/components/GoSkeleton'
import { LoadingComponent } from '@/components/LoadingComponent'
import { SketchRule } from 'vue3-sketch-ruler'
/**
* 全局注册自定义组件
@@ -9,4 +10,5 @@ import { LoadingComponent } from '@/components/LoadingComponent'
export function setupCustomComponents(app: App) {
app.component('GoSkeleton', GoSkeleton)
app.component('LoadingComponent', LoadingComponent)
app.component('SketchRule', SketchRule)
}