Jakub Schulz

Results 31 comments of Jakub Schulz

@kazupon I can see that this has already been fixed in the o edge version. Thanks! Unfortunately, auto-redirection does not work (I get 404 error). Even after manually setting the...

Workaround: ```ts const { $localePath } = useNuxtApp(); ```

@dargmuesli For me, `useLocalePath` already works fine in the latest version (`^8.0.0-beta.2`): ``` import { useLocalePath } from 'vue-i18n-routing'; const localePath = useLocalePath(); console.log(localePath('dashboard')); ``` Interestingly, despite TypeScript reporting an...

Edit: I reopen issue because using `useLocalePath` in middleware produces an error 😕: ``` vue-router.mjs:3451 SyntaxError: Must be called at the top of a `setup` function (at null:85:17) at createCompileError...

@kazupon The problem still persists: #1605

@dargmuesli you're right. I got upset with my project and got a little carried away. Such unkind words serve no purpose. I corrected my quote, but if you've already seen...

> After a bit of search trough the [ohmyfetch](https://github.com/unjs/ohmyfetch) (the library used by nuxtjs mentioned in the documentation) I obtained the status code easily, this is my solution: > >...

Edit: The problem disappears if I mark all my components as global. Is it possible to mark only one folder as global components? If you think it's not a problem...

@userquin thanks for your fast response. I wrap this component with `client-only`, but I don't see any difference. With module and client component: ![image](https://github.com/vite-pwa/nuxt/assets/48328739/c39e0280-bde8-4508-9378-d01b1a1654a1) Without module and with client component:...

Temporary workaround: `emailAddress as any`