放置背景图片路径:

 设置背景图片

<template>
  <div class="background">
    <img :src="imgSrc" width="100%" height="100%" alt="" />
  </div>
</template>

<script>
export default {
  data () {
    return {
      imgSrc: require('../assets/1.png')
    }
  }
}
</script>

<style>
  .background {
    left: 0;
    top: 0;
    width:100%;
    height:100%;  /**宽高100%是为了图片铺满屏幕 */
    z-index:-1;
    position: absolute;
}
</style>

 

Logo

前往低代码交流专区

更多推荐