在export default的代码中添加如下代码,设置body的属性margin:0和padding:0

beforeRouteEnter(to, from, next) {
      // 添加背景色 margin:0;padding:0是为了解决vue四周有白边的问题
      document.querySelector('body').setAttribute('style', 'margin:0;padding:0')
      next()
    },
    beforeRouteLeave(to, from, next) {
      // 去除背景色
      document.querySelector('body').setAttribute('style', '')
      next()
    },

再刷新下看看,四周的白边已经消失了

 

 

Logo

前往低代码交流专区

更多推荐