我是 vuejs + webpack + electron 的新手,我正在使用这些工具开始一个新项目。
我很难在我的标签中检索到我的资产的路径。
我的项目结构如下:
/my-project
/app
/components
componentA.vue
...
App.vue
main.js
/dist
/assets
logo.png
package.json
webpack.config.js
...
我的 webpack.config.js 看起来像:
module.exports = {
// This is the "main" file which should include all other modules
entry: './app/main.js',
// Where should the compiled file go?
output: {
// To the `dist` folder
path: './dist',
// With the filename `build.js` so it's dist/build.js
filename: 'build.js'
},
module: {
loaders: [
{
test: /\.vue$/,
loader: 'vue-loader'
},
{
test: /\.js$/,
loader: 'babel-loader',
query: {
presets: ['es2015']
},
exclude: /node_modules/
},
{
test: /\.(jpeg|png|gif|svg)$/,
loader: "file-loader?name=[name].[ext]"
}
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue.common.js',
}
}
}
在文件 componentA.vue 中,我尝试执行以下操作:
<template>
<div>
<img class="ui small image" src="../../assets/logo.png">
</div>
</template>
<script>
...
</script>
但我有以下错误
Failed to load resource: net::ERR_FILE_NOT_FOUND file:///logo.png
浏览器尝试加载 file:///logo.png (这是错误的,因为它不是我的资产的完整路径,它错过了 my-project 目录的整个路径)所以我试图将我的资产放在输出 /dist没有结果的文件夹(但我不确定我做对了)。
你能帮我解决这个问题吗?非常感谢 !