我如今的項目要將登陸頁面的背景引一圖片作爲背景圖片,按原jsp中的寫法,發現沒法找到背景圖片,最後從網上查資料,採用上面的寫法,成功顯示出背景圖片,參考網址jsp
https://blog.csdn.net/TingiBanDeQu/article/details/78521521url
內容.net
<template>
<div>
<!-- 成功引入的三種方法: -->
<!-- 1 -->
<img src="~@/da.jpg" width="100">
<!-- 2 -->
<div class="img1"></div>
<!-- 3 -->
<div class="img2" :style="{backgroundImage: 'url(' + img + ')' }"></div>
</div>
</template>blog
<script>
import Img from '@/da.jpg'圖片
export default {
data () {
return {
img: Img,
}
}
}
</script>ip
<style>
.img1{
width: 100px;
height: 100px;
background: url('~@/da.jpg') center center no-repeat;
background-size: 100px auto;
}
.img2{
width: 100px;
height: 100px;
background-position: center center;
background-repeat: no-repeat;
background-size: 100px auto;
}
</style>it