fix not-showing of conductor caused by merge with topic-core-refactor

This commit is contained in:
Deep Tailor 2018-09-27 14:59:26 -07:00
parent 987740c649
commit 57d60128a2

View File

@ -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
}
}
</script>