前端之Vuex

主要解决租价之间传值的问题。

npm install vuex@3/4
state:用于存储应用程序的状态数据
mutations:用于修改状态数据,外部不要直接对state进行修改。
getter:对状态数据进行处理例如过滤操作。
action:异步操作,网络请求是异步操作,该步骤在action中进行。
module:做数据隔离,针对不同模块下的应用设置不同数据。

具体的使用方法。

①新建一个js文件,里面专门存放State

html 复制代码
import Vue from "vue";
import Vuex from "vuex"
Vue.use(Vuex)


const store = new Vuex.Store({
    state:{
        count:0,
        todos: [
            { id: 1, text: '吃饭', done: true },
            { id: 2, text: '睡觉', done: false }
          ]
    },
    mutations:{
        increment(state,n){
            state.count+=n
        }
    },
    getters:{
        doneTodos:state=>{
            //对于todos数组中每一个元素todo,如果todo.done为true啧该元素增加到新数组中,作为最终的返回。
            //箭头函数,箭头前是参数,箭头后取出箭头前参数的属性
            return state.todos.filter(todo =>todo.done)
        }
    }

})
export default store

创建好以后这个state就是数据仓库了

②在main.js中引入注入这个store机制

html 复制代码
import Vue from 'vue'
import App from './App.vue'
import store from "./store/index"

Vue.config.productionTip = false

new Vue({
  render: h => h(App),
  store:store
}).$mount('#app')

③在组件中调用

注意其中的计算属性中使用...mapState,....mapGetters,以及方法中使用...mapMutations...mapActions就是对四种机制的映射,让我们使用起来更加方面,具体的映射可以看官网

html 复制代码
<template>
  <div class="hello">
    {{ count }}
    <button @click="myadd">状态加一</button>
    <ul>
      <li v-for="todo in doneTodos" :key="todo.id">{{ todo.text }}</li>
    </ul>
  </div>
</template>

<script>
import { mapState, mapGetters, mapMutations, mapActions  } from 'vuex';

export default {
  name: 'HelloWorld',
  computed:{
    ...mapState([
      'count',
      "todos"
    ]),
    ...mapGetters([
      "doneTodos"
    ]),
    
  },
  methods:{
    ...mapMutations([
      "increment"
    ]),
    ...mapActions([
      "increment"
    ]),
    myadd(){
      // this.$store.commit("increment",3)
      this.increment(3)
    }
  },
  props: {
    msg: String
  },
  
}
</script>

④module

module是面向不同模块的数据隔离。

const moduleA = {
  state: () => ({ ... }),
  mutations: { ... },
  actions: { ... },
  getters: { ... }
}

const moduleB = {
  state: () => ({ ... }),
  mutations: { ... },
  actions: { ... }
}

const store = new Vuex.Store({
  modules: {
    a: moduleA,
    b: moduleB
  }
})

store.state.a // -> moduleA 的状态
store.state.b // -> moduleB 的状态
相关推荐
网络点点滴15 分钟前
声明式和函数式 JavaScript 原则
开发语言·前端·javascript
禁默19 分钟前
【学术会议-第五届机械设计与仿真国际学术会议(MDS 2025) 】前端开发:技术与艺术的完美融合
前端·论文·学术
binnnngo24 分钟前
2.体验vue
前端·javascript·vue.js
LCG元25 分钟前
Vue.js组件开发-实现多个文件附件压缩下载
前端·javascript·vue.js
索然无味io29 分钟前
组件框架漏洞
前端·笔记·学习·安全·web安全·网络安全·前端框架
╰つ゛木槿38 分钟前
深入探索 Vue 3 Markdown 编辑器:高级功能与实现
前端·vue.js·编辑器
yqcoder1 小时前
Commander 一款命令行自定义命令依赖
前端·javascript·arcgis·node.js
前端Hardy1 小时前
HTML&CSS :下雪了
前端·javascript·css·html·交互
醉の虾1 小时前
VUE3 使用路由守卫函数实现类型服务器端中间件效果
前端·vue.js·中间件
码上飞扬2 小时前
Vue 3 30天精进之旅:Day 05 - 事件处理
前端·javascript·vue.js