<template>
<div v-if="reFresh">
...
</div>
</template>
export default {
data() {
return {
reFresh: true
}
},
methods: {
initPage() {...},
handleReFresh() {
this.reFresh = false
this.$nextTick(() => {
this.initPage() // 初始化頁面資料
this.reFresh = true
})
}
}
}
轉載請註明出處,本文鏈接:https://www.uj5u.com/qianduan/300253.html
標籤:其他
上一篇:JS 如何實作占位符
