这是我的第一篇掘金博客,开启掘金写作之路。
官网引入方式
import Toast from 'path/to/@vant/weapp/dist/toast/toast';
调试器报错
module "pages/DeviceDetailInfo/path/to/@vant/weapp/dist/toast/toast.js" is not defined Couldn't resolve the Js file "path/to/@vant/weapp/dist/toast/toast"
引入文件路径错误,不要加入dist文件路径
解决方法
import Toast from '@vant/weapp/toast/toast';