vue监听页面大小变化
mounted: function () {
window.addEventListener('resize', this.getHeight)
},
beforeRouteLeave(to, from, next) {
// 离开页面时取消监听
window.removeEventListener('resize', this.getHeight)
next()
},
vue监听页面大小变化
mounted: function () {
window.addEventListener('resize', this.getHeight)
},
beforeRouteLeave(to, from, next) {
// 离开页面时取消监听
window.removeEventListener('resize', this.getHeight)
next()
},