remove unused/empty update lifecycle method from layout.vue

This commit is contained in:
Deep Tailor 2018-09-28 10:05:26 -07:00
parent 57d60128a2
commit a0327b56aa

View File

@ -35,7 +35,8 @@
ref="browseObject"> ref="browseObject">
</object-view> </object-view>
<component class="l-shell__time-conductor" <component class="l-shell__time-conductor"
:is="conductorComponent"></component> :is="conductorComponent">
</component>
</pane> </pane>
<pane class="l-shell__pane-inspector l-pane--holds-multipane" <pane class="l-shell__pane-inspector l-pane--holds-multipane"
handle="before" handle="before"
@ -261,7 +262,7 @@
} }
}, },
methods: { methods: {
fullScreenToggle () { fullScreenToggle() {
if (this.fullScreen) { if (this.fullScreen) {
this.fullScreen = false; this.fullScreen = false;
@ -271,12 +272,9 @@
enterFullScreen(); enterFullScreen();
} }
}, },
openInNewTab (event) { openInNewTab(event) {
event.target.href = window.location.href; event.target.href = window.location.href;
} }
},
updated(){
console.log
} }
} }
</script> </script>