Why Vuex

Posted develon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Why Vuex相关的知识,希望对你有一定的参考价值。

Install the Vuex

import Vue from ‘vue‘;
import Vuex from ‘vuex‘;

Vue.use(Vuex);

Use the Vuex.Store

const store = new Vuex.Store({
    state: {},
    mutations: {},
    actions: {},
    getters: {},
});
const root = new Vue({
    store,
});

END

以上是关于Why Vuex的主要内容,如果未能解决你的问题,请参考以下文章