我按照这里提供的指南pinia persisted state plugin,但我不能让它工作,我的状态重置页面刷新,我的配置有什么问题吗?
// nuxt.config
modules: [
[
"@pinia/nuxt",
{
autoImports: ["defineStore", "acceptHMRUpdate"],
},
],
@pinia-plugin-persistedstate/nuxt",
],
// test-store
export const useTestStore = defineStore("test-store", {
state: () => ({
hello: "there"
}),
persist: {
storage: persistedState.localStorage,
}
});
在一页我呼吁
const store = useTestStore();
store.$patch({ hello: "changed" });
并在另一个I控制台上记录状态
const store = useTestStore();
console.log(store.$state.hello);
当从一个导航到另一个时,不是记录“更改”,而是记录“那里”。
1条答案
按热度按时间o75abkj41#
我也遇到了同样的问题,并决定在不使用任何插件的情况下快速简单地解决这个问题: