From 62005141132da1e9761598fa3e4b35b4dab38a89 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Sat, 21 Dec 2019 02:06:02 +0100 Subject: Implemented VueX and a basic UIStore with the fullscreen mutation Some renaming --- viewer/src/views/LdGallery.vue | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'viewer/src/views') diff --git a/viewer/src/views/LdGallery.vue b/viewer/src/views/LdGallery.vue index 98f083f..d22bfa6 100644 --- a/viewer/src/views/LdGallery.vue +++ b/viewer/src/views/LdGallery.vue @@ -1,9 +1,13 @@ @@ -11,13 +15,7 @@ import { Component, Vue } from "vue-property-decorator"; @Component -export default class LdGallery extends Vue { - fullscreen: boolean = false; - - toggleFullscreen() { - this.fullscreen = !this.fullscreen; - } -} +export default class LdGallery extends Vue {}