chore: 构建稳定版本
This commit is contained in:
@@ -7,11 +7,12 @@ 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'
|
||||
import signalR from '@/utils/signalR'
|
||||
|
||||
const {token}=storeToRefs(useUserStore());
|
||||
|
||||
onMounted(() => {
|
||||
onMounted(async () => {
|
||||
await signalR.init(`main`);
|
||||
nextTick(() => {
|
||||
// 初始化主题样式
|
||||
handleThemeStyle(useSettingsStore().theme)
|
||||
@@ -21,8 +22,7 @@ onMounted(() => {
|
||||
|
||||
//这里还需要监视token的变化,重新进行signalr连接
|
||||
watch(()=>token.value,async (newValue,oldValue)=>{
|
||||
// await signalR.close();
|
||||
// await signalR.start();
|
||||
await signalR.init(`main`);
|
||||
})
|
||||
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user