SaltTheWound
SaltTheWound
NNuxt
Created by SaltTheWound on 3/26/2025 in #❓・help
Nuxt active-link-class
@kapa.ai :exact="false" does not seem to exist
11 replies
NNuxt
Created by SaltTheWound on 3/1/2025 in #❓・help
await callOnce() blocks navigation
@kapa.ai By removing the await i loose ssr.
20 replies
NNuxt
Created by SaltTheWound on 3/1/2025 in #❓・help
await callOnce() blocks navigation
@kapa.ai Now how do i avoid the page being blocked by the await callOnce on navigation.
20 replies
NNuxt
Created by SaltTheWound on 3/1/2025 in #❓・help
await callOnce() blocks navigation
@kapa.ai useAsyncData is not meant to have side-effects though and the recommended way in the pinia docs is:
<script setup>
const store = useStore()
// we could also extract the data, but it's already present in the store
await callOnce('user', () => store.fetchUser())
</script>
<script setup>
const store = useStore()
// we could also extract the data, but it's already present in the store
await callOnce('user', () => store.fetchUser())
</script>
20 replies