Skip to content

Commit

Permalink
Use shallowRef
Browse files Browse the repository at this point in the history
  • Loading branch information
baku89 committed Sep 6, 2024
1 parent c280d36 commit 07c9df1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,11 @@
import {useTethr} from '@tethr/vue3'
import {saveAs} from 'file-saver'
import {Tethr, TethrObject} from 'tethr'
import {ref, watchEffect} from 'vue'
import {ref, shallowRef, watchEffect} from 'vue'
import TethrConfig from './TethrConfig.vue'
const folderHandler = ref<FileSystemDirectoryHandle | null>(null)
const folderHandler = shallowRef<FileSystemDirectoryHandle | null>(null)
const TransparentPng =
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII='
Expand Down

0 comments on commit 07c9df1

Please sign in to comment.