hash
根目录
background: url('/static/logo.png') no-repeat center/ 50%; 跟路径 / 和 相对路径
<img src="/static/logo.png" alt="" srcset=""> 跟路径 / 和 相对路径
<div class="image1" style="background:url('/static/logo.png')"></div> 跟路径 / 和 相对路径 和 ./
<img :src="image" alt="" srcset=""> 跟路径 / 和 相对路径 和 ./
data () {
return {
image: '/static/logo.png'
}
}
子目录
①config index.js文件下 build对象中publicPatch 从默认的 / 改成 ./
build: {
// Paths
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: 'static',
assetsPublicPath: './',
}
background: url('../../static/logo.png') no-repeat center/ 50%; 相对路径
<img src="../../static/logo.png" alt="" srcset=""> 相对路径
<div class="image1" style="background:url('./static/logo.png')"></div> ./
<img :src="image" alt="" srcset=""> ./
data () {
return {
image: './static/logo.png'
}
}
总结:
hash模式,本地运行 肯定是在根目录 127.0.0.1:xxxx/# 使用上面根目录方法
打包发到生产环境,视情况使用
根目录和子目录 有些相同的引入方法
建议 直接使用相同的方法 同时适应根目录和子目录 部署
background: url('../../static/logo.png') no-repeat center/ 50%; 相对路径
<img src="../../static/logo.png" alt="" srcset=""> 相对路径
<div class="image1" style="background:url('./static/logo.png')"></div> ./
<img :src="image" alt="" srcset=""> ./
data () {
return {
image: './static/logo.png'
}
}