vue3+elementPlus:每次进入页面,懒加载的el-tree控件数据要局部刷新

    
            
    

const treeVisible = ref(true) // tree隐藏显示,用于实时刷新tree控件

//生命周期
onActivated(() => {
    //tree隐藏再显示就会触发load方法
    treeVisible.value = false;
    nextTick(() => {
        treeVisible.value = true;
    });
})

上一篇文章, 

uniapp之列表加载更多数据_uniapp列表加载_意初的博客-CSDN博客触发事件onreachbottom,和onLoad等生命周期同级,页数加载时将变量传给接口再返回页数。 if (this.page >= this.total) { console.log('判断当前页数是否大于等于总页数')https://blog.csdn.net/weixin_43928112/article/details/127774831

你可能感兴趣的:(vue.js,elementui,javascript,前端,ecmascript)