vue vuex 大型项目demo示例
1、vuex 动态模块配置
- import Vue from 'vue'
- import Vuex from 'vuex'
- import store from '@/store';
- // 使用Vuex插件,即使插件被调用多次,插件也只会安装一次
- Vue.use(Vuex);
- // state存储数据的状态
- const state = {
- // 数据状态
- name: 'mfg'
- }
- // getters获取数据状态
- const getters = {
- // 可以使用store.getters.myName获取数据
- myName: state => {
- return state.name
- }
- }
- // mutations更改数据状态的唯一方法
- const mutations = {
- // 每个mutations都有一个事件类型type和回调函数。下面代码type为editName,回调函数即完成数据更改。
- // agr为参数
- editName(state, arg) {
- state.name = arg;
- }
- }
- // actions提交的是mutation,处理的异步操作
- const actions = {
- // 传递的参数为arg
- editNameAction({ commit, state }, arg) {
- commit('editName', arg)
- }
- }
- // registerModule,在 store 创建之后,注册模块
- // 模块动态注册功能可以让其他vue插件使用注册好的新模块
- store.registerModule('myNameSpace', {
- // 命名空间,模块具有更高的封装度和复用性
- namespaced: true,
- state,
- mutations,
- getters,
- actions
- })
或者组件注册:
- <script>
- import storeIndex from '../protect/store'
- import store from '@/store'
- export default {
- name: 'intelligence',
- beforeMount() {
- //组件注册store的命名空间
- store.registerModule('intelligence', storeIndex)
- },
- destroyed() {
- //组件销毁store的命名空间
- store.unregisterModule('intelligence')
- }
- }
- </script>
- /protect/store文件:
- export default {
- namespaced: true,
- modules: {
- common,
- workflow,
- configfile,
- sysdetail,
- unitdetail
- }
- }
2、vue单文件demo
- <template>
- <div>
- <!-- 使用mapState获取数据状态 -->
- <p>{{name}}</p>
- <!-- 使用mapGetters获取数据状态 -->
- <p>{{myName}}</p>
- <!-- 使用mapMutations更改数据状态 -->
- <el-button @click="edit('abc')">修改名字</el-button>
- <!-- 使用mapActions更改数据状态 -->
- <el-button @click="edit2('def')">修改名字2</el-button>
- </div>
- </template>
- <script>
- import sti from 'commons/sti';
- import './store';
- // 辅助函数mapMutations, mapActions, mapGetters, mapState
- import { mapMutations, mapActions, mapGetters, mapState } from 'vuex';
- export default sti.page({
- computed: {
- // 使用对象展开运算符将此对象混入到外部对象中
- // 第一个参数为模块上下文myNameSpace
- ...mapState('myNameSpace', {
- name: state => state.name
- }),
- // 使用对象展开运算符将此对象混入到外部对象中
- // 第一个参数为模块上下文myNameSpace
- ...mapGetters('myNameSpace', ['myName'])
- },
- data() {
- return {}
- },
- methods: {
- // 第一个参数为模块上下文myNameSpace
- ...mapMutations('myNameSpace', ['editName']),
- // 第一个参数为模块上下文myNameSpace
- ...mapActions('myNameSpace', ['editNameAction']),
- // 也可以这样写
- // ...mapActions(['myNameSpace/editNameAction']),
- edit(arg) {
- // 更新数据状态
- this.editName(arg);
- },
- edit2(arg) {
- // 更新数据状态
- this.editNameAction(arg);
- }
- },
- mounted() {}
- });
- </script>
在mutations中可以将type设置为常量
- const mutations = {
- [types.THEME_UPDATE](state, theme) {
- state.appTheme = theme
- }
- }
- const actions = {
- updateTheme: ({commit}, theme) => {
- commit(types.THEME_UPDATE, theme)
- }
- }
3、严格模式
- const store = new Vuex.Store({
- // ...
- strict: process.env.NODE_ENV !== 'production'
- })
在严格模式下,无论何时发生了状态变更且不是由 mutation 函数引起的,将会抛出错误。这能保证所有的状态变更都能被调试工具跟踪到。
vue vuex 大型项目demo示例的更多相关文章
- vuejs学习——vue+vuex+vue-router项目搭建(三)
前言 vuejs学习——vue+vuex+vue-router项目搭建(一) vuejs学习——vue+vuex+vue-router项目搭建(二) 为什么用vuex:组件之间的作用域独立,而组件之间 ...
- vuejs学习——vue+vuex+vue-router项目搭建(二)
前言 最近比较忙,所有第二章发布晚了,不好意思各位. vuejs学习——vue+vuex+vue-router项目搭建(一) 中我们搭建好了vue项目,我相信大家已经体验了vue其中的奥妙了,接下来我 ...
- Vue/Egg大型项目开发(一)搭建项目
项目Github地址:前端(https://github.com/14glwu/stuer)后端(https://github.com/14glwu/stuer-server) 项目线上预览:http ...
- vuejs学习——vue+vuex+vue-router项目搭建(一)
前言 快年底了却有新公司邀请了我,所以打算把上家公司的学到一下技术做一些总结和分享. 现在vuejs都2.0了,我相信也有很多朋友和我一样实际项目还是选择vue1.0的或者给新手一些参考,不管在选择哪 ...
- 【vue】MongoDB+Nodejs+express+Vue后台管理项目Demo
¶项目分析 一个完整的网站服务架构,包括: 1.web frame ---这里应用express框架 2.web server ---这里应用nodejs 3.Database ---这里 ...
- 后端狗的Vue学习历程(一) - demo示例与基本逻辑语法
目录 demo的三部分结构 判断:v-if.v-else-if.v-else 循环:v-for 事件绑定 v-on:eventType 内容输入的双向绑定v-model 源码:Github demo的 ...
- Vue/Egg大型项目开发(二)数据库设计
项目Github地址:前端(https://github.com/14glwu/stuer)后端(https://github.com/14glwu/stuer-server) 项目线上预览:http ...
- 【分享】Vue 资源典藏(UI组件、开发框架、服务端、辅助工具、应用实例、Demo示例)
Vue 资源典藏,包括:UI组件 开发框架 服务端 辅助工具 应用实例 Demo示例 element ★11612 - 饿了么出品的Vue2的web UI工具套件 Vux ★7503 - 基于Vue和 ...
- Vue UI组件 开发框架 服务端 辅助工具 应用实例 Demo示例
Vue UI组件 开发框架 服务端 辅助工具 应用实例 Demo示例 element ★11612 - 饿了么出品的Vue2的web UI工具套件 Vux ★7503 - 基于Vue和WeUI的组件库 ...
随机推荐
- 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 ...
- Linux命令之find(二)
接上一篇Linux命令之find(一) (1).实例 1.列出当前目录下及子目录下所有的.txt文件 [xf@xuexi ~]$ ls 1.txt 3.txt b.txt 公共 视频 文档 音乐 2. ...
- [BZOJ1913][APIO2010]信号覆盖(计算几何+计数)
1913: [Apio2010]signaling 信号覆盖 Time Limit: 20 Sec Memory Limit: 64 MBSubmit: 1658 Solved: 672[Subm ...
- BZOJ 1828 [Usaco2010 Mar]balloc 农场分配(贪心+线段树)
[题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=1828 [题目大意] 现在有一些线段[l,r]的需求需要满足,i位置最多允许a[i]条线 ...
- [CODECHEF]TREECNT2
题意:一棵带边权的树,边权可单边修改,问初始时和每次修改后有多少条路径$\gcd=1$ 首先考虑用反演求答案,设$f(n)$为路径$\gcd=n$的路径条数,$g(n)$为路径$\gcd$是$n$倍数 ...
- python学习第九十天:vue补习2
Vue 八.重要指令 v-bind <!-- 值a --> <div v-bind:class='"a"'></div> <!-- 变量a ...
- openfire安装完毕后无法登录控制台(忘记密码)的解决方法
openfire登录管理控制提示: Login failed:make sure your username and password are correct and that you’re an a ...
- BZOJ 4029: [HEOI2015]定价 贪心
4029: [HEOI2015]定价 题目连接: http://www.lydsy.com/JudgeOnline/problem.php?id=4029 Description 在市场上有很多商品的 ...
- Android Content Provider Security(转)
四大组件之一-content provider安全详解 原帖地址:http://drops.wooyun.org/tips/4314 0x00 科普 内容提供器用来存放和获取数据并使这些数据可以被所有 ...
- 【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" ...