ivie表格table默认展开第一行

一、效果

二、代码

<div class="tableWra">
      <ticket-info-table check-type="checkQuery" :card-cancel-info="orderList"></ticket-info-table>
    </div>
 data() {
    return {
      orderList: [],
    }
}
setOrderList(true) {
      if (true) {
        // 默认选中第一行
        this.orderList[0]._highlight = true; // eslint-disable-line
        // 默认展开第一行
        this.orderList[0]._expanded = true; // eslint-disable-line
      }
    },

 

posted @ 2019-08-20 10:02  碧果果  阅读(567)  评论(0编辑  收藏  举报