diff --git a/packages/nuxt/playground/domain/one/stores/testStore.ts b/packages/nuxt/playground/domain/one/stores/testStore.ts index c258f57b9d..3fffd1d393 100644 --- a/packages/nuxt/playground/domain/one/stores/testStore.ts +++ b/packages/nuxt/playground/domain/one/stores/testStore.ts @@ -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 {} })