Bootstrap

store文件夹 vue_VUE状态管理——store

管理全局变量,便于组件之间传值

一、创建文件

1、在store文件夹中新建index.js文件

import Vue from 'vue' //引入vue

import Vuex from 'vuex' //引入vue

//使用vuex

Vue.use(Vuex)

//创建Vuex实例

const store = new Vuex.Store({

state:{

count:1 //保存的数据

}

})

export default store //导出store

2、在main.js中引用文件,实例引入store对象

import store from ./store/index

new Vue({

store

})

二、State

数据保存在index.js文件中,可使用this.$store.state来获取自定义数据

三、Getters

相当于vue中的computed计算属性,getter 的返回值会根据它的依赖被缓存起来,且只有当它的依赖值发生了改变才会被重新计算。Getters 可以用于监听、state中的值的变化,返回计算后的结果

this.$store.getters.getStoreCount

//页面中这样写可直接调用getters中的方法

//index.js文件中定义getters的方法

const store = new Vuex.Store({

state:{

co

;