// 结构
<div class="foother" v-if="showBtn">
<button>提交</button>
</div>
data () {
return {
clientHeight: document.documentElement.clientHeight,
showBtn: true,
}
}
mounted() {
window.onresize= ()=>{
if(this.clientHeight>document.documentElement.clientHeight) {
this.showBtn =false
}else{
this.showBtn = true
}
}
}