不多說(shuō)槽片,直接上代碼 dddd
data(){
retrun {
screenWidth:null,
dialogWidth:0,
}
},
mounted() {
this.screenWidth = document.body.clientWidth
window.onresize = () => {
return (() => {
this.screenWidth = document.body.clientWidth
})()
}
},
watch: {
screenWidth: {
handler: function (val, oldVal) {
if (val < 800) {
this.dialogWidth = '400px'
//此刻屏幕寬度小于800
} else {
this.dialogWidth = '800px'
//此刻屏幕寬度大于800
}
},
},
},