diff --git a/src/views/IndexView.vue b/src/views/IndexView.vue index dab6d56..9a1c106 100644 --- a/src/views/IndexView.vue +++ b/src/views/IndexView.vue @@ -13,7 +13,7 @@ @click=" isActive(item.query.identification) ? '' - : (useStatusStore().appLoadingCompleted = false) + : (statusStore.appLoadingCompleted = false) " v-for="(item, index) in topNavMap" :key="index" @@ -39,6 +39,8 @@ // 获取钩子函数 const { topNavMap, isActive } = useIndex(); + + const statusStore = useStatusStore();