vue图片、背景图片路径问题
vue中引入图片经常会出现路径问题,在此记录一下:
1.组件中 <img> 引用图片
<img src="../assets/img/logo.png" >
2.app.vue <style>中引入图片
body {background: url(‘../static/img/back5.jpg‘);}
3.组件行间样式引入背景图片
<div style="background-image:url(’static/img/1.jpg‘)">
行间动态引入背景图片
<div :style="‘background-image:url(\‘static/img/‘+btnscard.back+‘\‘)‘">
原文地址:https://www.cnblogs.com/s313139232/p/9007228.html
时间: 2024-11-10 15:07:04