Jakub Schulz
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:  Without module and with client component:...
Temporary workaround: `emailAddress as any`