美国vps服务器的Vue中引用背景图片的方法:1、通过img标签直接引用图片做背景;2、通过“background: url”的方式对元素添加样式引用背景图片;3、通过import方法,再引用背景图片即可。
Vue中引用背景图片的示例:
第一种方法
通过img标签直接引用图片做背景。
<img class="card" src="~@/assets/img/card_bg.png" ></img>
第二种方法
通过“background: url”的方式对元素添加样式引用背景图片。
<div class="card"></div>
<style>
.card {
background: url('~@/assets/img/card_bg.png') center center no-repeat;
}
</style>
第三种方法
通过import方法,再引用背景图片。
<script>
import cardPath from "@/assets/img/card_bg.png"
export default {
data() {
return {
cardPath: cardPath ,
}
}
}
</script>
<div class="card" :style="{backgroundImage: 'url(' + cardPath + ')' }"></div>
购买使用一诺网络美国VPS,可以极大降低初创企业、中小企业以及个人开发者等用户群体的整体IT使用成本,无需亲自搭建基础设施、简化了运维和管理的日常工作量,使用户能够更专注于自身的业务发展和创新。美国VPS低至49元/月,购买链接:https://www.enuoidc.com/vpszq.html?typeid=3