多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
可以将`store `中的`key `提取放到一个统一的文件中管理,防止一些书写错误性质bug,将命名同一管理 ![](https://img.kancloud.cn/0a/69/0a69b184982e56e45196672d4b8fc972_348x85.png) 使用时候将`key `引入 ~~~ import { CHANGE_INFO } from './mutation_types' .... mutations: { [CHANGE_INFO](state) { ... }, }, ~~~ * 在页面使用 ~~~ import { CHANGE_INFO } from "@/store/mutation_types" this.$store.commit(CHANGE_INFO) ~~~