Vue 实时监听窗口变化并控制组件的显示与隐藏 记录一下

查阅了很多大神们的文章,大致都是只有前部分,后面的如何控制隐藏并没有。
本来是用min-width来限制的 反正有滚动轴,缩再小也不会乱。
后来觉得自适应看起来舒服点,还是研究下自适应吧。做个笔记。
1.首先,一步一步来。
data里 添加一个变量 screenWidth

export default {
  name: "login",
  data() {
    return {
      screenWidth: document.body.clientWidth,  //给它赋值个(个人理解为网页的宽度)
      }
     }
   }

2.在页面加载时,挂载这个方法

 mounted() {
    const that = this;
    window.onresize = () => {
      return (() => {
        window.screenWidth = document.body.clientWidth;
        that.screenWidth = window.screenWidth;
      })();
    };
  }

3.最后监听screenWidth值的变化,通过控制台观察screenWidth变化的值

watch: {
    screenWidth(val) {
      if (!this.timer) {                           // 为了避免频繁触发resize函数导致页面卡顿,使用定时器
        this.screenWidth = val;          // 一旦监听到的screenWidth值改变,就将其重新赋给data里的screenWidth
        this.timer = true;
        let that = this;
        setTimeout(function() {
           console.log(that.screenWidth);      // 打印screenWidth变化的值
          that.timer = false;
        }, 400);
      }
    }
  }

4.那么当你缩放你所在网页的浏览器时,控制台就会打印出一个个值出来了。
Vue 实时监听窗口变化并控制组件的显示与隐藏 记录一下_第1张图片
5.有值了 那么怎么通过缩放来控制显示隐藏呢,这里贴个小李子。




引入组件的话,也一样,

 

总结,可以应用在哪里,如果当页面被缩小到最小时,这时候太多组件的话可能会引起错乱重叠,
不美观,这时候适当的隐藏掉一部分转为按钮来触发其实也不错。
个人理解,个中不足,望指出,做个笔记。

你可能感兴趣的:(Vue 实时监听窗口变化并控制组件的显示与隐藏 记录一下)