From b5ca7f44f5f4d115bde8e2c37214b1078dd7b25e Mon Sep 17 00:00:00 2001 From: alvarosabu Date: Thu, 23 Nov 2023 18:41:48 +0100 Subject: [PATCH] fix: show ouput as default in mobile --- src/SplitPane.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SplitPane.vue b/src/SplitPane.vue index f6becaa..74ee5b3 100644 --- a/src/SplitPane.vue +++ b/src/SplitPane.vue @@ -9,8 +9,8 @@ const container = ref() // mobile only const store = inject('store') as Store -const showOutput = ref(store.initialShowOutput) - +const showOutput = ref(store.initialShowOutput) +showOutput.value = true const state = reactive({ dragging: false, split: 50,