有没有办法将bower_components添加到vue-webpack。 我试过某种方式它不起作用。
webpack.base.conf.js
http://pastebin.com/Gae193xP
组件文件
select `field(s)` from table where .... limit x
答案 0 :(得分:0)
您应该从要使用它的位置加载脚本文件。 Webpack将加载它并将其包含在build.js
中<-- componentX.vue -->
...
<script lang="js">
import jquery from "../bower_components/jquery/jquery.js";
...
</script>
答案 1 :(得分:0)
您应该配置webpack配置文件以解决来自bower的软件包。例如,在webpack.config.js
中module.exports = {
resolve: {
modulesDirectories: ["web_modules", "node_modules", "bower_components"]
},
plugins: [
new webpack.ResolverPlugin(
new webpack.ResolverPlugin.DirectoryDescriptionFilePlugin(".bower.json", ["main"])
)
]
}