相關(guān)配置:項目路徑:/var/website/test
目錄結(jié)構(gòu):
compiled
source
components public
public.vue static
image
test.png
plugins // ...static假設(shè)在一個 source/components/public/public.vue 文件中,通過 js 引入了一個文件:<template>
<section>
<img ref='test' src='' class='image'>
</section></template><script>export default { name: '' ,
mounted () { this.$refs.test.src='../../static/image/test.png';
}
};</script>webpack 打包后,訪問不到資源?。ebpack 如何處理通過 js 引入的資源文件加載問題??
webpack 如何處理通過 `js` 引入的資源文件加載問題??
MMMHUHU
2018-08-26 15:10:22