详解从react转职到vue开发的项目准备(4)

import Vuex from 'vuex'; import { Module, VuexModule, Mutation, Action } from 'vuex-module-decorators'; @Module class foo extends VuexModule { text = 'hello world' @Mutation setText(text) { this.text = text; } @Action({ commit: 'setText' }) setTextAction(text) { return text; } } const store = new Vuex.Store({ modules: { foo: foo }) export default store;

这样,我们的项目准备基本上完毕了,把Vue组件和Vuex状态管理以class的形式来编写。大概是我觉得es5的写法显得不太优雅吧,没有es6的写法那么高端。

结束

class语法和装饰器decorators语法都是ES6的提案,都带给了前端不一样的编程体验,大概也是前端的一个比较大的革命吧,我们应该拥抱这样的革命变化。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/04dd760dd8a3749969a0634e31e0606d.html