|
在VUE 项目开发过程中,一直报如下警告:
There are multiple modules with names that only differ in casing. This can lead to unexpected behavior when compiling on a filesystem with other case-semantic. Use equal casing. Compare these module identifiers: 原因: 这是引用组件时,路径大小写不对导致的。比如: 如果Paginate组件是大写的,那么这样用会错: import Paginate from '~/components/paginate.vue'; 需要这样写: import Paginate from '~/components/Paginate.vue'; 参考 :https://www.cnblogs.com/chaoyong/p/8340681.html |
|
|