1. 程式人生 > >ElementUI 樹形表格元件 遇到的坑 展開收縮失效

ElementUI 樹形表格元件 遇到的坑 展開收縮失效

在茫茫百度中搜到了一個demo,https://blog.csdn.net/s8460049/article/details/61414751

https://github.com/sunlandong/treeTable   github上下載原始碼

遇到一個問題就是進來頁面節點全部展開  展開收縮功能全部失效 試了好多辦法 

最終解決辦法 TreeGrid.vue中修改為如下 然後就好啦

      showTr: function (row, index) {
        console.log(index)
        let show = (row.row._parent ? (row.row._parent._expanded && row.row._parent._show) : true)
        row.row._show = show
        return show ? '' : 'display:none;'
      },