我使用來自here和here的hackernews方法設置vuex和SSR,並且它都能正常工作。 app.js: // Expose a factory function that creates a fresh set of store, router,
// app instances on each call (which is called for each SSR request)
import Vue from 'vue'
import Vuex from 'vuex'
import Users from './modules/Users'
Vue.use(Vuex)
export const store = new Vuex.Store({
namespaced: true,
state: {
foo: false,
據我所知,在Vuex我們可以做store.subscribe,我們通過一個被稱爲在商店的每一個變化回調。 在我的應用程序中,我有一個有很多模塊的商店,並且想要subscribe只適用於特定的模塊,而不必擁有這種邏輯if (mutation.type != thisModule.type) return;。 是否可以只訂閱一些模塊? Could not find it in the docs。