vue force a refresh assembly when the window size change method

mounted () {
window.onresize = () => {
return (() => {
this.$forceUpdate();
})()
}
}

Guess you like

Origin www.cnblogs.com/kid526940065/p/10973738.html