data(){
return {
screenWidth: document.body.clientWidth
}
},
mounted() {
//监听浏览器大小
let that = this;
window.addEventListener("resize", function() {
return (() => {
window.screenWidth = document.body.clientWidth;
that.screenWidth = window.screenWidth;
console.log("that.screenWidth", that.screenWidth);
})();
});
},
watch: {
//防止因为频繁触发 resize 函数,导致页面很卡的问题
screenWidth(val) {
if (!this.timer) {
this.screenWidth = val;
this.timer = true;
let that = this;
setTimeout(function() {
that.reload();
that.timer = false;
}, 400);
}
}
}
悟空浏览器的秘密:如何轻松下载小说和视频?网页版入口大公开!
上面是“vuejs监听当前浏览器大小执行”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_1801.html
workflows工作流
一个神秘的隐藏面孔下一本书的剪影ComfyUI工作流
一个港口配备了小型船只、起重机、集装箱和码头
一个熙熙攘攘的市场场景,里面摆满了南瓜
一个全脸彩绘和纹身的超级名模ComfyUI工作流
一个穿绿衣服国风古典女孩
一个美丽的女孩穿着花瓣做的衣服
树上挂着一只快乐的荔枝ComfyUI工作流
一位漂亮的女人坐在樱花树旁
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

黑客入侵效果代码
用svg画出游泳池动画效果
css3实现星球旋转
css3做一个风雨雷电天气动态图标
js实现下雪特效
jquery做一个漂亮挂墙动态时钟
css3搭积木叠加图形






