ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
可以将`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) ~~~