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提示了。

相关文章:

  • 2021-12-18
  • 2021-08-19
  • 2021-10-29
  • 2022-12-23
  • 2021-06-06
  • 2022-12-23
  • 2021-10-07
猜你喜欢
  • 2021-11-14
  • 2022-12-23
  • 2021-07-26
  • 2021-07-05
  • 2022-12-23
  • 2021-11-07
  • 2021-09-19
相关资源
相似解决方案