首先在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同目录下才行

Logo

前往低代码交流专区

更多推荐