fix: 修改绘制界面样式,新增返回首页按钮

This commit is contained in:
mtruning
2022-01-09 17:12:35 +08:00
parent 3d8519519b
commit 7332dd1e98
10 changed files with 118 additions and 61 deletions
@@ -26,7 +26,7 @@
</template>
<script setup lang="ts">
import { reactive } from 'vue'
import { reactive, shallowRef } from 'vue'
import { renderIcon } from '@/utils'
import { icon } from '@/plugins'
import { ContentBox } from '../ContentBox/index'
@@ -43,13 +43,13 @@ const tabList = reactive([
key: 'setting',
title: '配置项',
icon: renderIcon(CubeIcon),
render: Setting
render: shallowRef(Setting)
},
{
key: 'behind',
title: '后端数据',
icon: renderIcon(FlashIcon),
render: Behind
render: shallowRef(Behind)
}
])
</script>