欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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:{

  }
})
相关标签: html5 vue