fix: 修改key

This commit is contained in:
mtruning
2022-01-16 22:17:34 +08:00
parent c63637360f
commit e1bb655bf1
36 changed files with 130 additions and 86 deletions
+11 -2
View File
@@ -1,3 +1,12 @@
import LoadingComponent from './index.vue';
import type { App } from 'vue'
import LoadingComponent from './index.vue'
import AsyncLoading from './index.vue'
export { LoadingComponent };
// 正常组件
export { LoadingComponent }
// 异步
AsyncLoading.install = (app: App): void => {
app.component('AsyncLoading', AsyncLoading)
}
export { AsyncLoading }
+1 -1
View File
@@ -1,6 +1,6 @@
<template>
<div>
<Skeleton repeat="3" :load="true"/>
<Skeleton :repeat="3" :load="true"/>
</div>
</template>