vue-cli 创建的项目里怎么引入 bower_component 里的js文件
import fileinput from '/bower_components/bootstrap-fileinput/js/fileinput.js'
错误提示如下:
This dependency was not found:
/bower_components/bootstrap-fileinput/js/fileinput.js in ./~/_babel-loader@6.4.1@babel-loader/lib!./~/_vue-loader@12.2.1@vue-loader/lib/selector.js?type=script&index=0!./src/components/category/import.vue
To install it, you can run: npm install --save /bower_components/bootstrap-fileinput/js/fileinput.js
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1、官方文档 https://webpack.github.io/doc...
2、直接设置alias
3、bootstrap-fileinput这个包在npm上是有的,为什么不直接用npm安装呢