From 9ebeb99cd086a2d08aa959a040f9ecabb2b05edd Mon Sep 17 00:00:00 2001 From: BarZu <1419328765@qq.com> Date: Fri, 22 Sep 2017 22:13:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86childNodes=E6=94=B9=E4=B8=BAchildren?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/table/table.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/table/table.vue b/src/components/table/table.vue index 83bf9fe6..e482ca92 100644 --- a/src/components/table/table.vue +++ b/src/components/table/table.vue @@ -351,7 +351,7 @@ if (allWidth) autoWidthIndex = this.cloneColumns.findIndex(cell => !cell.width);//todo 这行可能有问题 if (this.data.length) { - const $td = this.$refs.tbody.$el.querySelectorAll('tbody tr')[0].childNodes; + const $td = this.$refs.tbody.$el.querySelectorAll('tbody tr')[0].children; for (let i = 0; i < $td.length; i++) { // can not use forEach in Firefox const column = this.cloneColumns[i];