在我的vue(2.0)+ webpack项目中,我配置了vue-html-loader,但在我的.vue文件中,img标签无法加载静态src图像。 下面是我的webpack配置:
<img src="/web/img/sieleLogo@1x.png" srcset="/web/img/sieleLogo@2x.png" />
以下是我的.vue文件:
module
我的浏览器总是出现404错误。有人得到同样的问题吗?
答案 0 :(得分:0)
我在我的webpack配置中有以下内容,这对我有用:
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue',
options: vueConfig
},
{
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'url',
options: {
limit: 10000,
name: '[name].[ext]?[hash]'
}
}
]
}
我在src/assets
文件夹中有图像,我可以在没有任何特定设置的情况下访问和显示该图像。
答案 1 :(得分:0)
我会在你的webpack别名中为你的静态img
目录添加一个别名,即
resolve: {
...
alias: {
'vue': 'vue/dist/vue.js',
'img': path.resolve(__dirname, '../web/img') // or wherever it is located relative to this file
}
}
现在您可以通过~img
引用静态图像,即
<img src="~img/sieleLogo@1x.png" srcset="~img/sieleLogo@2x.png" />
为确保您可以在html中解析上述内容,您需要将vue-html
加载程序添加到您的webpack配置中:
module: {
loaders: [
...
{
test: /\.html$/,
loaders: 'vue-html'
}
我只是用上面的代码替换你当前的html加载器。
然而,除了这一切之外 - 由于脚手架的复杂性是一个坚实的webpack vue应用程序,我强烈建议您安装 vue-cli :https://github.com/vuejs/vue-cli
然后您可以简单地推出经过测试和运行的webpack环境:
https://github.com/vuejs-templates/webpack
只需将您的应用程序复制到其中即可。您可能需要进行一些重构,但节省时间绝对是值得的。