1. css中設置div的樣式position:fixed;及height:100%,width:100%
<template> <div class="html body"> </template> .html{ background:url('../img/bg.jpg') repeat center top #826e79; height: 100%; width: 100%; position: fixed; }
2、App.vue中設置body
body {
margin: 0;
padding: 0;
}