Closed DevilRoshan closed 6 years ago
如题,如果我有一个状态在两者中共同保存,如果我人为修改其中一个,页面刷新,vuex状态跟新读取的优先级是什么。 vuexAlong.watchSession(['count'], true) vuexAlong.watch(['count'], true)
vuexAlong.watchSession(['count'], true) vuexAlong.watch(['count'], true)
目前看来是优先读取SessionStorage,不知道这是不是你预期设置的
是的(~ ̄▽ ̄)~ 先读取localstorage 再读取 sessionStorage , 后者 会覆盖 前者相同的地方。
#
如题,如果我有一个状态在两者中共同保存,如果我人为修改其中一个,页面刷新,vuex状态跟新读取的优先级是什么。
vuexAlong.watchSession(['count'], true) vuexAlong.watch(['count'], true)