Vuex 使用方式
程序员文章站
2024-03-12 17:30:44
...
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state:{
type:'max'
},
getters:{
},
mutations:{
},
actions:{
}
})
上一篇: Docker 使用方法
下一篇: VueX常用配置与使用方法