37 lines
797 B
Vue
37 lines
797 B
Vue
<template>
|
||
<router-view />
|
||
</template>
|
||
|
||
<script setup>
|
||
import useSettingsStore from '@/store/modules/settings'
|
||
import { handleThemeStyle } from '@/utils/theme'
|
||
import useUserStore from '@/store/modules/user'
|
||
import { storeToRefs } from 'pinia';
|
||
import signalR from '@/utils/signalR'
|
||
|
||
const {token}=storeToRefs(useUserStore());
|
||
|
||
onMounted(async () => {
|
||
await signalR.init(`main`);
|
||
nextTick(() => {
|
||
// 初始化主题样式
|
||
handleThemeStyle(useSettingsStore().theme)
|
||
})
|
||
})
|
||
|
||
|
||
//这里还需要监视token的变化,重新进行signalr连接
|
||
watch(()=>token.value,async (newValue,oldValue)=>{
|
||
await signalR.init(`main`);
|
||
})
|
||
|
||
</script>
|
||
<style>
|
||
.el-form--inline {
|
||
.el-form-item {
|
||
.el-input, .el-cascader, .el-select, .el-autocomplete {
|
||
width: 180px;
|
||
}
|
||
}
|
||
}
|
||
</style> |