vuex 调用方法总结

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vuex 调用方法总结相关的知识,希望对你有一定的参考价值。

参考技术A 1.在vue组件里面引用:

import mapState, mapGetters, mapMutations, mapActions

mapState:   computed属性里面 声明

mapGetters:  computed属性里面 声明

mapMutations: methods属性里面 声明

mapActions: methods属性里面 声明

2.在js直接调用state:

import store from '@/store';

const crmToken, userInfo = store.state;---------调用state

store.dispatch('setLogout'); --------调用actions方法

store.commit('SET_ERR_MSG', errMsg);-----调用方法

3.vuex 引入element-ui 并使用

import Message  from 'element-ui';

Message.error(

    message: s.errMsg,

    onClose: () => 

        s.showErrorMsg = false;

    ,

);

uniapp使用vuex进行项目模块化,两种调用方式

参考技术A

刚开始接触uniApp看了一下vuex的使用方法,总结一下在项目中个人认为常用的架构,很实用,做一个新手学习笔记!!!

使用HBuilderx创建项目,在项目内创建store目录,在目录内创建 index.js 文件,如下

以上是关于vuex 调用方法总结的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 vuex 和 typescript 将 axios 调用移动到自己的方法中

使用 VueX Store 中的计算属性进行 Ajax 调用的正确方法是啥

定义了一个vue全局方法,不能再vuex中进行调用

uniapp使用vuex进行项目模块化,两种调用方式

为 AJAX 调用准备 Vuex Store 数据的正确方法

Vuex——阶段总结