vue项目设置背景图片
首先在div上面设置以下参数<template><divclass="bg" :style ="bg"></div></template>然后再script里面设置如下参数
·
首先在div上面设置以下参数
<template>
<div class="bg" :style ="bg">
</div>
</template>
然后再script里面设置如下参数
<script>
export default {
name: 'fash',
data() {
return {
bg: {
backgroundImage: "url(" + require("./img/fash.png") + ")",
backgroundRepeat: "no-repeat",
backgroundSize: "100% 100%",
},
};
},
methods: {
},
mounted() {
}
};
</script>
有一个要注意的是:这个图片的位置很奇怪,我放在其他目录下面不行,只有发在与vue同目录下才行
更多推荐
已为社区贡献3条内容
所有评论(0)