在vue项目中使用了vuex,但是项目跑起来之后控制台告警:
This can lead to unexpected behavior when compiling on a filesystem with other case-semantic. Use equal casing. Compare these module identifiers:
这是因为在引入vuex的时候有的地方首字母大写有的地方首字母小写引起的。具体代码如下: store/index.js引入代码如下:
import Vuex from "Vuex";
在vue文件引入vuex的代码如下:
import { mapMutations } from "vuex";