幽灵资源网 Design By www.bzswh.com
1.Nuxt里怎么使用vuex"text-align: center">2.Nuxt中怎么对vuex进行模块化设置"text-align: center">2.2> 在store/index.js 中不需要返回 Vuex.Store 实例,可以直接将 state、mutations 和 actions 暴露出来:
(以下为例:index中存储商品总价,child1中存储单价,child2中存放数量)export const state = () =>({ totalPrice:0, }); export const mutations = { totalPrice (state) { //总价 // state.totalPrice = state.num*state.price 错误方式:使用子模块的state,应该在变量名前加上文件名,如下 state.totalPrice = state.child1.price*state.child2.num //正确方式 } };子模块中同样直接将 state、mutations 和 actions 暴露出来:
child1.js1export const state = () =>({ price:10, //单价 }); export const mutations = { getPrice(state,price) { state.price= price } };child2.js2export const state = () =>({ num:5, }); export const mutations = { getNum(state,num) { //数量 state.num= num } };3.在vue文件中获取vuex的数据,调用mutation中的方法修改数据<script> export default { name : 'test', data() { return { totalPrice:this.$store.state.totalPrice, //取index.js(根模块)中的值 num:this.$store.state.child2.num, //取子模块中的值 price:this.$store.state.child1.price, //取子模块中的值 } }, } </script>methods: { setTotalPrice(){ this.$store.commit('totalPrice') }, setNum(){ this.$store.commit('child2/getNum',参数) //使用子模块的mutation中的方法 this.$store.commit(‘文件名/方法名',参数) }, setPrice(){ this.$store.commit('child1/getPrice',参数) //使用子模块的mutation中的方法 }, },补充: 使用子模块的action: this.$store.dispatch(‘文件名/变量名')参考链接:
https://www.jb51.net/article/169502.htm
https://www.jb51.net/article/169504.htm以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
幽灵资源网 Design By www.bzswh.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
幽灵资源网 Design By www.bzswh.com
暂无评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。