From 57d60128a246102687963033c764d9121d9e7caf Mon Sep 17 00:00:00 2001 From: Deep Tailor Date: Thu, 27 Sep 2018 14:59:26 -0700 Subject: [PATCH] fix not-showing of conductor caused by merge with topic-core-refactor --- src/ui/components/layout/Layout.vue | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/ui/components/layout/Layout.vue b/src/ui/components/layout/Layout.vue index 6c235cdfef..2ccc3cf228 100644 --- a/src/ui/components/layout/Layout.vue +++ b/src/ui/components/layout/Layout.vue @@ -241,11 +241,6 @@ } export default { - data() { - return { - conductorComponent: {} - } - }, components: { Inspector, MctStatus, @@ -261,7 +256,8 @@ }, data: () => { return { - fullScreen: false + fullScreen: false, + conductorComponent: {} } }, methods: { @@ -278,6 +274,9 @@ openInNewTab (event) { event.target.href = window.location.href; } - } + }, + updated(){ + console.log + } }