Vue body样式修改

此篇博客记录自己再写项目是遇到的App.vue显示问题。

问题:查看页面时,发现有8px的margin,看着很不爽,想要去掉这个margin。
修改前:直接上图
在这里插入图片描述

解决方式,通过beforeCreate函数设置App.vue中body的样式

export default {
  beforeCreate() {
    document.querySelector('body').setAttribute('style', 'margin:0;')
  },
}

在这里插入图片描述
可以明显看出,外边距已经没有了,over。

猜你喜欢

转载自blog.csdn.net/weixin_43424325/article/details/121291621