vue 变换背景颜色(末尾元素不能使用margin,用padding代替)

//关键
{{tit.content}}
// 内容超出一屏,需要加上接口中使用
    getList() {
        document
          .getElementById("question")
          .setAttribute("style", "background-color:#f6f6f6");
    }
  },
  // 进入加入背景颜色
  mounted() {
    document
      .querySelector("body")
      .setAttribute("style", "background-color:#f6f6f6");
  },
  // 离开去除背景颜色
  beforeDestroy() {
    document.querySelector("body").removeAttribute("style");
  }

 

你可能感兴趣的:(vue)