1、vuex 动态模块配置

  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. import store from '@/store';
  4.  
  5. // 使用Vuex插件,即使插件被调用多次,插件也只会安装一次
  6. Vue.use(Vuex);
  7.  
  8. // state存储数据的状态
  9. const state = {
  10.  
  11. // 数据状态
  12. name: 'mfg'
  13. }
  14.  
  15. // getters获取数据状态
  16.  
  17. const getters = {
  18.  
  19. // 可以使用store.getters.myName获取数据
  20. myName: state => {
  21. return state.name
  22. }
  23. }
  24.  
  25. // mutations更改数据状态的唯一方法
  26. const mutations = {
  27.  
  28. // 每个mutations都有一个事件类型type和回调函数。下面代码type为editName,回调函数即完成数据更改。
  29. // agr为参数
  30. editName(state, arg) {
  31. state.name = arg;
  32. }
  33. }
  34.  
  35. // actions提交的是mutation,处理的异步操作
  36. const actions = {
  37.  
  38. // 传递的参数为arg
  39. editNameAction({ commit, state }, arg) {
  40. commit('editName', arg)
  41. }
  42. }
  43.  
  44. // registerModule,在 store 创建之后,注册模块
  45. // 模块动态注册功能可以让其他vue插件使用注册好的新模块
  46. store.registerModule('myNameSpace', {
  47.  
  48. // 命名空间,模块具有更高的封装度和复用性
  49. namespaced: true,
  50. state,
  51. mutations,
  52. getters,
  53. actions
  54. })

或者组件注册:

  1. <script>
  2. import storeIndex from '../protect/store'
  3. import store from '@/store'
  4.  
  5. export default {
  6. name: 'intelligence',
  7. beforeMount() {
  8. //组件注册store的命名空间
  9. store.registerModule('intelligence', storeIndex)
  10. },
  11. destroyed() {
  12. //组件销毁store的命名空间
  13. store.unregisterModule('intelligence')
  14. }
  15. }
  16. </script>
  17.  
  18. /protect/store文件:
  19. export default {
  20. namespaced: true,
  21. modules: {
  22. common,
  23. workflow,
  24. configfile,
  25. sysdetail,
  26. unitdetail
  27. }
  28. }

2、vue单文件demo

  1. <template>
  2. <div>
  3. <!-- 使用mapState获取数据状态 -->
  4. <p>{{name}}</p>
  5. <!-- 使用mapGetters获取数据状态 -->
  6. <p>{{myName}}</p>
  7. <!-- 使用mapMutations更改数据状态 -->
  8. <el-button @click="edit('abc')">修改名字</el-button>
  9. <!-- 使用mapActions更改数据状态 -->
  10. <el-button @click="edit2('def')">修改名字2</el-button>
  11. </div>
  12. </template>
  13. <script>
  14.  
  15. import sti from 'commons/sti';
  16. import './store';
  17.  
  18. // 辅助函数mapMutations, mapActions, mapGetters, mapState
  19. import { mapMutations, mapActions, mapGetters, mapState } from 'vuex';
  20.  
  21. export default sti.page({
  22. computed: {
  23.  
  24. // 使用对象展开运算符将此对象混入到外部对象中
  25. // 第一个参数为模块上下文myNameSpace
  26. ...mapState('myNameSpace', {
  27. name: state => state.name
  28. }),
  29.  
  30. // 使用对象展开运算符将此对象混入到外部对象中
  31. // 第一个参数为模块上下文myNameSpace
  32. ...mapGetters('myNameSpace', ['myName'])
  33. },
  34.  
  35. data() {
  36. return {}
  37. },
  38.  
  39. methods: {
  40.  
  41. // 第一个参数为模块上下文myNameSpace
  42. ...mapMutations('myNameSpace', ['editName']),
  43.  
  44. // 第一个参数为模块上下文myNameSpace
  45.  
  46. ...mapActions('myNameSpace', ['editNameAction']),
  47.  
  48. // 也可以这样写
  49. // ...mapActions(['myNameSpace/editNameAction']),
  50. edit(arg) {
  51.  
  52. // 更新数据状态
  53. this.editName(arg);
  54. },
  55. edit2(arg) {
  56.  
  57. // 更新数据状态
  58. this.editNameAction(arg);
  59. }
  60. },
  61.  
  62. mounted() {}
  63. });
  64. </script>

在mutations中可以将type设置为常量

  1. const mutations = {
  2.  
  3. [types.THEME_UPDATE](state, theme) {
  4. state.appTheme = theme
  5. }
  6. }
  1. const actions = {
  2.  
  3. updateTheme: ({commit}, theme) => {
  4. commit(types.THEME_UPDATE, theme)
  5. }
  6. }

3、严格模式

  1. const store = new Vuex.Store({
  2. // ...
  3. strict: process.env.NODE_ENV !== 'production'
  4. })

在严格模式下,无论何时发生了状态变更且不是由 mutation 函数引起的,将会抛出错误。这能保证所有的状态变更都能被调试工具跟踪到。

vue vuex 大型项目demo示例的更多相关文章

  1. vuejs学习——vue+vuex+vue-router项目搭建(三)

    前言 vuejs学习——vue+vuex+vue-router项目搭建(一) vuejs学习——vue+vuex+vue-router项目搭建(二) 为什么用vuex:组件之间的作用域独立,而组件之间 ...

  2. vuejs学习——vue+vuex+vue-router项目搭建(二)

    前言 最近比较忙,所有第二章发布晚了,不好意思各位. vuejs学习——vue+vuex+vue-router项目搭建(一) 中我们搭建好了vue项目,我相信大家已经体验了vue其中的奥妙了,接下来我 ...

  3. Vue/Egg大型项目开发(一)搭建项目

    项目Github地址:前端(https://github.com/14glwu/stuer)后端(https://github.com/14glwu/stuer-server) 项目线上预览:http ...

  4. vuejs学习——vue+vuex+vue-router项目搭建(一)

    前言 快年底了却有新公司邀请了我,所以打算把上家公司的学到一下技术做一些总结和分享. 现在vuejs都2.0了,我相信也有很多朋友和我一样实际项目还是选择vue1.0的或者给新手一些参考,不管在选择哪 ...

  5. 【vue】MongoDB+Nodejs+express+Vue后台管理项目Demo

    ¶项目分析 一个完整的网站服务架构,包括:   1.web frame ---这里应用express框架   2.web server ---这里应用nodejs   3.Database ---这里 ...

  6. 后端狗的Vue学习历程(一) - demo示例与基本逻辑语法

    目录 demo的三部分结构 判断:v-if.v-else-if.v-else 循环:v-for 事件绑定 v-on:eventType 内容输入的双向绑定v-model 源码:Github demo的 ...

  7. Vue/Egg大型项目开发(二)数据库设计

    项目Github地址:前端(https://github.com/14glwu/stuer)后端(https://github.com/14glwu/stuer-server) 项目线上预览:http ...

  8. 【分享】Vue 资源典藏(UI组件、开发框架、服务端、辅助工具、应用实例、Demo示例)

    Vue 资源典藏,包括:UI组件 开发框架 服务端 辅助工具 应用实例 Demo示例 element ★11612 - 饿了么出品的Vue2的web UI工具套件 Vux ★7503 - 基于Vue和 ...

  9. Vue UI组件 开发框架 服务端 辅助工具 应用实例 Demo示例

    Vue UI组件 开发框架 服务端 辅助工具 应用实例 Demo示例 element ★11612 - 饿了么出品的Vue2的web UI工具套件 Vux ★7503 - 基于Vue和WeUI的组件库 ...

随机推荐

  1. Codeforces Round #433 (Div. 2, based on Olympiad of Metropolises) D. Jury Meeting(双指针模拟)

    D. Jury Meeting time limit per test 1 second memory limit per test 512 megabytes input standard inpu ...

  2. Linux命令之find(二)

    接上一篇Linux命令之find(一) (1).实例 1.列出当前目录下及子目录下所有的.txt文件 [xf@xuexi ~]$ ls 1.txt 3.txt b.txt 公共 视频 文档 音乐 2. ...

  3. [BZOJ1913][APIO2010]信号覆盖(计算几何+计数)

    1913: [Apio2010]signaling 信号覆盖 Time Limit: 20 Sec  Memory Limit: 64 MBSubmit: 1658  Solved: 672[Subm ...

  4. BZOJ 1828 [Usaco2010 Mar]balloc 农场分配(贪心+线段树)

    [题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=1828 [题目大意] 现在有一些线段[l,r]的需求需要满足,i位置最多允许a[i]条线 ...

  5. [CODECHEF]TREECNT2

    题意:一棵带边权的树,边权可单边修改,问初始时和每次修改后有多少条路径$\gcd=1$ 首先考虑用反演求答案,设$f(n)$为路径$\gcd=n$的路径条数,$g(n)$为路径$\gcd$是$n$倍数 ...

  6. python学习第九十天:vue补习2

    Vue 八.重要指令 v-bind <!-- 值a --> <div v-bind:class='"a"'></div> <!-- 变量a ...

  7. openfire安装完毕后无法登录控制台(忘记密码)的解决方法

    openfire登录管理控制提示: Login failed:make sure your username and password are correct and that you’re an a ...

  8. BZOJ 4029: [HEOI2015]定价 贪心

    4029: [HEOI2015]定价 题目连接: http://www.lydsy.com/JudgeOnline/problem.php?id=4029 Description 在市场上有很多商品的 ...

  9. Android Content Provider Security(转)

    四大组件之一-content provider安全详解 原帖地址:http://drops.wooyun.org/tips/4314 0x00 科普 内容提供器用来存放和获取数据并使这些数据可以被所有 ...

  10. 【JSP EL】<c:if> <c:foreach >EL表达式 获取list长度/不用循环,EL在List中直接获取第一项的内容/EL获取Map的键,Map的值

    1.EL表达式 获取list长度 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" ...