From f5e833d8b5dd3f5c55fa1762bb9a113a7238c6b6 Mon Sep 17 00:00:00 2001 From: Hex Date: Tue, 8 Jun 2021 11:29:07 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=20el-tree=20=E9=BC=A0?= =?UTF-8?q?=E6=A0=87=E6=8B=96=E6=94=BE=E5=AF=BC=E8=87=B4=E7=9A=84=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E4=B8=8D=E6=9B=B4=E6=96=B0=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复:当你在组件树里,把一个组件拖动到另一个组件上,使目标组件成为这个组件的父组件时,然后从组件列表中,通过单击给这个父组件添加组件,则组件树不会出现刚添加的组件。 --- src/components/Node.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Node.vue b/src/components/Node.vue index 3b3ef46..01fbaad 100755 --- a/src/components/Node.vue +++ b/src/components/Node.vue @@ -430,6 +430,10 @@ // 非布局组件 显式设置为 false 才是 false, 楼层模式 else return component.stack !== false })()) + // 没有子组件的组件,预先放置一个空数组,以解决 el-tree 鼠标拖放导致的数据不更新的问题 + if (!that.info.child) { + that.$set(that.info, 'child', []) + } // 子组件限额 that.$set(that.info, 'childLimit', typeof that.info.childLimit === 'number' ? that.info.childLimit : toSafeNumber(component.childLimit, 9999)) // 叶子节点