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 { export default {
data() {
return {
conductorComponent: {}
}
},
components: { components: {
Inspector, Inspector,
MctStatus, MctStatus,
@ -261,7 +256,8 @@
}, },
data: () => { data: () => {
return { return {
fullScreen: false fullScreen: false,
conductorComponent: {}
} }
}, },
methods: { methods: {
@ -278,6 +274,9 @@
openInNewTab (event) { openInNewTab (event) {
event.target.href = window.location.href; event.target.href = window.location.href;
} }
} },
updated(){
console.log
}
} }
</script> </script>