vue 获取页面高度

mounted(){

  window.onresize = () => {
    return (() => {
      window.fullHeight = //获取到的高度 document.documentElement.clientHeight;
    })()
  };
}
原文地址:https://www.cnblogs.com/yugueilou/p/14061789.html