diff --git a/src/SplitPane.vue b/src/SplitPane.vue
index 365849ae..8b49a09a 100644
--- a/src/SplitPane.vue
+++ b/src/SplitPane.vue
@@ -10,7 +10,6 @@ const previewRef = inject(injectKeyPreviewRef)!
// mobile only
const { store, splitPaneOptions } = inject(injectKeyProps)!
-const showOutput = computed(() => store.value.showOutput)
const state = reactive({
dragging: false,
@@ -66,7 +65,7 @@ function changeViewSize() {
class="split-pane"
:class="{
dragging: state.dragging,
- 'show-output': showOutput,
+ 'show-output': store.showOutput,
vertical: isVertical,
}"
@mousemove="dragMove"
@@ -90,9 +89,9 @@ function changeViewSize() {
-