fix: 修改icon警告信息
This commit is contained in:
parent
7200242386
commit
e8057361d6
3
src/components/ErrorComponent/index.ts
Normal file
3
src/components/ErrorComponent/index.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import ErrorComponent from './index.vue';
|
||||||
|
|
||||||
|
export { ErrorComponent };
|
9
src/components/ErrorComponent/index.vue
Normal file
9
src/components/ErrorComponent/index.vue
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<n-result status="error" title="错误" description="加载失败啦"> </n-result>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup></script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
3
src/components/LoadingComponent/index.ts
Normal file
3
src/components/LoadingComponent/index.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import LoadingComponent from './index.vue';
|
||||||
|
|
||||||
|
export { LoadingComponent };
|
9
src/components/LoadingComponent/index.vue
Normal file
9
src/components/LoadingComponent/index.vue
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<Skeleton repeat="3" :load="true"/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { Skeleton } from '@/components/Skeleton/index'
|
||||||
|
</script>
|
@ -27,7 +27,6 @@
|
|||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive, shallowRef } from 'vue'
|
import { reactive, shallowRef } from 'vue'
|
||||||
import { renderIcon } from '@/utils'
|
|
||||||
import { icon } from '@/plugins'
|
import { icon } from '@/plugins'
|
||||||
import { ContentBox } from '../ContentBox/index'
|
import { ContentBox } from '../ContentBox/index'
|
||||||
import { useChartLayoutStore } from '@/store/modules/chartLayoutStore/chartLayoutStore'
|
import { useChartLayoutStore } from '@/store/modules/chartLayoutStore/chartLayoutStore'
|
||||||
@ -42,13 +41,13 @@ const tabList = reactive([
|
|||||||
{
|
{
|
||||||
key: 'setting',
|
key: 'setting',
|
||||||
title: '配置项',
|
title: '配置项',
|
||||||
icon: renderIcon(CubeIcon),
|
icon: CubeIcon,
|
||||||
render: shallowRef(Setting)
|
render: shallowRef(Setting)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 'behind',
|
key: 'behind',
|
||||||
title: '后端数据',
|
title: '后端数据',
|
||||||
icon: renderIcon(FlashIcon),
|
icon: FlashIcon,
|
||||||
render: shallowRef(Behind)
|
render: shallowRef(Behind)
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user