mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
fix: 修改key
This commit is contained in:
@@ -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,6 +1,6 @@
|
||||
<template>
|
||||
<div>
|
||||
<Skeleton repeat="3" :load="true"/>
|
||||
<Skeleton :repeat="3" :load="true"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user