Vue编译提示警告
Posted Mr Zhu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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.
使用唯一的写法
提示原因:
import Pagination from ‘../../../components/Pagination/Pagination‘
Pagination在项目的文件名是小写的,这里引用的时候变大写了,正确写法如下:
import Pagination from ‘../../../components/pagination/pagination‘ , 这样写 就不会报warning提示了。
以上是关于Vue编译提示警告的主要内容,如果未能解决你的问题,请参考以下文章
Laravel Nova 覆盖 vue 组件导致 [Vue 警告]:编译模板时出错
Webpack 使用 NODE_ENV=production 编译 vue 仍然会导致开发警告
将对象实例直接作为 const 接口参数传递时,编译器是不是应该提示/警告?
vue 编译大量空格警告问题总结 warning: Replace `??` with `··`
vue.js数据可以在页面上渲染成功却总是警告提示某个字段未定义
vue报start value has mixed support, consider using flex-start instead”编译警告,在这里轻松解决!