vue element-ui table 对获取的数据进行toggleRowSelection

    
    

    data() {
        return {
           Detail: []
        }
    }

    methods: {
        get_Detail (){
        let getDetail = []  //获取的数据
        this.Detail = getDetail 
        let _this = this
        //必须要在$nextTick里面执行,否则toggleRowSelection无效
        _this.$nextTick(function(){
                _this.$refs.DetailTable.toggleRowSelection(_this.Detail[0])        
                                }
                            }
                            
                        }
                    }) 
    }
}

你可能感兴趣的:(vue element-ui table 对获取的数据进行toggleRowSelection)