Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Sep 10, 2024
1 parent 414846f commit 43f58df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages-private/sfc-playground/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ setVH()
const useSSRMode = ref(false)
const AUTO_SAVE_STORAGE_KEY = 'vue-sfc-playground-auto-save'
const initAutoSave: boolean = JSON.parse(localStorage.getItem(AUTO_SAVE_STORAGE_KEY) ?? 'true')
const initAutoSave: boolean = JSON.parse(
localStorage.getItem(AUTO_SAVE_STORAGE_KEY) ?? 'true',
)
const autoSave = ref(initAutoSave)
const { productionMode, vueVersion, importMap } = useVueImportMap({
Expand Down

0 comments on commit 43f58df

Please sign in to comment.