模仿uni-id-pages的store测试 部分代码如下
文件 testStore
export const store = reactive(data)
文件 testA.nvue
import {
store
} from '@/store/testStore.js'
const hasLogin = computed(() => {
return store.hasLogin
})
文件 testB.nvue
import {
mutations
} from '@/store/testStore.js'
function test() {
mutations.loginSuccess()
}
2 个回复
DCloud_uniCloud_JSON
nvue是页面隔离,你可以把
reactive(data)
的数据挂在globalData下,再跨页面获取下一个版本将会修复此问题,感谢反馈!
zhengyu
请问更新了吗