码迷,mamicode.com
首页 > 其他好文 > 详细

Why Vuex

时间:2020-04-09 21:34:47      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:why   vue   stat   actions   getters   code   pre   getter   const   

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

标签:why   vue   stat   actions   getters   code   pre   getter   const   

原文地址:https://www.cnblogs.com/develon/p/12669544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!