Skip to content

Commit

Permalink
fix Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackCrowxyz committed Sep 26, 2023
1 parent d37366e commit e7fb4b7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/nuxt/playground/domain/one/stores/testStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ export const useTestStore = defineStore('test', () => {

// Should work without any error or importing
const { count, getCount } = storeToRefs(useCounter())
console.log('storeToRefs works without importing (Nuxt) !', count.value === getCount.value)
console.log(
'storeToRefs works without importing (Nuxt) !',
count.value === getCount.value
)

return {}
})

0 comments on commit e7fb4b7

Please sign in to comment.