родителю, например
От родителя к ребенку есть provide/inject
точно так же, как в v2
ок а как быть с вьюксом, в 4.0 не могу зарегать модуль
import { createStore } from 'vuex' import userChoice from './modules/userChoice' export default createStore({ state () {}, getters () {}, actions () {}, mutations () {}, modules () { return { userChoice } }, })
https://github.com/vuejs/vuex/tree/4.0#breaking-changes
сам модуль @/store/modules/userChoice: const states = { test: 'here' } const getters = {} const actions = {} const mutations = {} const modules = {} export default { namespaced: true, states, getters, actions, mutations, modules }
а почему const states
Обсуждают сегодня