最近发现自己遗忘了一些东西,所以就去恶补了一下vuex的使用,结果还行还用有点变化的,vue3中使用vuex和vue2中完全不一样,vue3中必须使用vuex4
官方解释
一、基本认识,以及使用
vuex是什么
Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式 + 库。它采用集中式存储管理应用的所有组件的状态,并以相应的规则保证状态以一种可预测的方式发生变化。
vuex的工作原理图
解决的痛点
痛点: 当我们的应用遇到多个组件共享状态时,单向数据流的简洁性很容易被破坏
vuex的基本使用
注意:如果你使用的是vue3那么vuex的版本因该对应是vuex4
npm i vuex
import { createStore } from 'vuex'
export default createStore({
state: {
name:"小王"
},
mutations: {
},
actions: {
},
modules: {
}
})
import { createApp } from 'vue'
import App from './App.vue'
import router from './router/index'
import store from './store';
import '@/style.css'
import 'element-plus/dist/index.css'
const app = createApp(App)
app.use(router);
app.use(store);
app.mount('#app')
<template>
<div>
<div>{{ store.state.name }}</div>
</div>
</template>
<script setup lang="ts">
import { useStore } from "vuex";
const store = useStore();
</script>
<style scoped>
</style>
vuex中一共有五个状态
State Getter Mutation Action Module 下面进行详细讲解
vuex的自身状态,是单一数据源
就不演示了,上面的代码已经演示过了
mutations
更改 Vuex 的 store 中的状态的唯一方法是提交 mutation (通过commit 来触发mutations)
我们通过commit 来触发mutations 中对应得方法
commit接收两个参数: 第一个参数是mutations中对对应得方法名字,第二个参数是传递过去得参数
muitations中得方法会接收两个参数第一个是:state指向state仓库, 第二个参数payload 是传过来得数据
组件中
<template>
<div>
<div>{{ store.state.name }}</div>
<el-button type="primary" @click="hanlderBut">开始操作</el-button>
</div>
</template>
<script setup lang="ts">
import { useStore } from "vuex";
const store = useStore();
const hanlderBut = () => {
console.log("开始操作");
store.commit("setName", { value: "我被修改了" });
};
</script>
<style scoped>
</style>
store文件中
(state:指向仓库的窗台,payload: 触发时候载荷的参数)=>{}
import { createStore } from 'vuex'
export default createStore({
state: {
name: "小王"
},
mutations: {
setName: (state, payload) => {
state.name = payload.value;
}
},
actions: {
},
modules: {
}
})
actions
acitons和mutations差不多,不同出在于 acitons是提交给mustations,不能直接去修改vuex的状态, 还有个重大区别是mutations是不可以执行异步,actions却可以执行(通过dispatch来触发actions)
actions 中得方法接收两个参数,context上下文环境,payload 传递过来得数据
store
import { createStore } from 'vuex'
export default createStore({
state: {
name: "小王"
},
mutations: {
setName: (state, payload) => {
state.name = payload.value;
}
},
actions: {
hanlderName: (context, payload) => {
context.commit("setName", payload)
}
},
modules: {
}
})
组件中
<template>
<div>
<div>{{ store.state.name }}</div>
<el-button type="primary" @click="hanlderBut">开始操作</el-button>
</div>
</template>
<script setup lang="ts">
import { useStore } from "vuex";
const store = useStore();
const hanlderBut = () => {
console.log("开始操作");
store.dispatch("hanlderName", { value: "我要通过actions来修改" });
};
</script>
<style scoped>
</style>
getter
vuex的计算属性,和vue2中computed差不多 使用来完成一些计算操作的
不过要注意这个 ,缓存机制相当重要
store文件
import { createStore } from 'vuex'
export default createStore({
state: {
name: "小王"
},
getters: {
getName: (state) => {
return state.name
}
},
})
组件中
<template>
<div>
<div>{{ store.getters["getName"] }}</div>
<el-button type="primary" @click="hanlderBut">开始操作</el-button>
</div>
</template>
<script setup lang="ts">
import { useStore } from "vuex";
const store = useStore();
const hanlderBut = () => {
console.log("获取数据:", store.getters["getName"]);
};
</script>
<style scoped>
</style>
modules
由于使用单一状态树,应用的所有状态会集中到一个比较大的对象。当应用变得非常复杂时,store 对象就有可能变得相当臃肿。
为了解决以上问题,Vuex 允许我们将 store 分割成模块(module)。每个模块拥有自己的 state、mutation、action、getter、甚至是嵌套子模块——从上至下进行同样方式的分割:
子模块(这里注意namespaced 为true, 必须开启空间命名)
export default {
namespaced: true,
state: {
userInfo: {
name: "孩子·",
age: 12,
sex: 1
}
},
mutations: {
setAge: (state: { userInfo: { age: number; }; }, payload: { value: number; }) => {
if (state.userInfo.age >= payload.value) {
state.userInfo.age += state.userInfo.age;
return;
}
state.userInfo.age = payload.value
}
},
actions: {
setAge: (context: { commit: (arg0: string, arg1: any) => void; }, payload: any) => {
context.commit("setAge", payload)
}
},
}
根模块
import { createStore } from 'vuex'
import children from './modules/children';
export default createStore({
modules: {
children
}
})
组件中使用:
commit和dispatch的使用一样 注意第一个参数即可
<template>
<div>参数: {{ store.state.children.userInfo.age }}</div>
<div>
<el-button type="primary" @click="hanlderBut">开始操作</el-button>
</div>
</template>
<script setup lang="ts">
import { useStore } from "vuex";
const store = useStore();
const hanlderBut = () => {
store.dispatch("children/setAge", { value: 100 });
};
</script>
<style scoped>
</style>
效果图:
原文地址:https://blog.csdn.net/liyu_ya/article/details/128676257
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_6163.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!