我们知道,vuex-store保存在客户端的内存中。令人惊奇的是,当我刷新浏览器时,节点终端将获得存储。
该项目基于Nuxt框架。这很奇怪,因为我从未将存储发送到后端以保存节点。它是怎么做到的?
export default {
async fetch({store}) {
// node terminal will reveal the below info
console.log('Show store', store.state)
}
}
我希望有人能解释nuxt是如何做到的?