获取国际化缓存
来源:5-9 方案落地:国际化缓存处理
johnny_2008
2022-07-16
老师您好
在项目中我使用的是 pinia 替代 vuex 但在些处使用会有个意外抛出
app.js:1362 Uncaught ReferenceError: Cannot access 'useGlobalStore' before initialization
at Module.useGlobalStore (global.js:3:55)
function locale() {
const globalStore = useGlobalStore()
return globalStore.language
}
写回答
1回答
-
Sunday
2022-07-16
你好
根据这个错误提示,问题应该是在 pinia 初始化之前你就访问了 useGlobalStore 导致的
052023-03-22
相似问题