使用import { NavBar, TabBar } from 'antd-mobile'语句时,项目报错These dependencies were not found:
提示找不到 nav-bar,tab-bar,
To install them, you can run: npm install --save antd-mobile/es/nav-bar antd-mobile/es/nav-bar/style antd-mobile/es/tab-bar antd-mobile/es/tab-bar/style
npm install 任然报错
Could not install from "antd-mobile\es\nav-bar" as it does not contain a package.json file.
解决方案:
使用如下语句导入组件,可以解决该问题
import { NavBar, TabBar } from 'antd-mobile/es'版权声明:本文为wq123123423432原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。