vue 背景图引入
Posted yc..
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 背景图引入相关的知识,希望对你有一定的参考价值。
<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>
<script>
import Img from '@/da.jpg'
export default
data ()
return
img: Img,
</script>
<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>
以上是关于vue 背景图引入的主要内容,如果未能解决你的问题,请参考以下文章