diff --git a/src/components/splitter/Splitter.vue b/src/components/splitter/Splitter.vue index 817a0a138..d210403ae 100644 --- a/src/components/splitter/Splitter.vue +++ b/src/components/splitter/Splitter.vue @@ -1,14 +1,14 @@ @@ -229,7 +229,7 @@ export default { if (this.isSplitterPanel(child)) { panels.push(child); } - else if (child.children.length > 0) { + else if (child.children.length instanceof Array) { child.children.forEach(nestedChild => { if (this.isSplitterPanel(nestedChild)) { panels.push(nestedChild)