安装
cnpm i vuex –save
使用
创建文件store.js引入必须文件
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
增加常量对象
const state={
count:1
}
用export default 封装代码,让外部可以引用。
export default new Vuex.Store({
state
})
在vue模板中使用
<template>
<div>
<h2>{{msg}}</h2>
<hr/>
<h3>{{$store.state.count}}</h3>
</div>
</template>
<script>
import store from '@/vuex/store'
export default{
data(){
return{
msg:'Hello Vuex',
}
},
store
}
</script>
修改vuex中的对象
在store.js文件中加入两个改变state的方法
const mutations={
add(state){
state.count++;
},
reduce(state){
state.count--;
}
}
组件模板中使用
<div>
<button @click="$store.commit('add')">+</button>
<button @click="$store.commit('reduce')">-</button>
</div>