Robin

Results 220 comments of Robin

I see two options here: - dont pass the timezone like: `1984-10-15T00:00:00` - we add an option to pass [the timezone manually](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat#timezone) (currently defaults to local). This allows you to...

Can you please spin up a reproduction via: https://stackblitz.com/github/nuxt/starter/tree/v4-stackblitz?file=README.md?

> Hey [@OrbisK](https://github.com/OrbisK)! Are you working on this or can I try to fix this? Go for it 👍🏽

I think you should use nuxts [`useRoute()`](https://nuxt.com/docs/4.x/api/composables/use-route)

maybe this works: ```vue const route = useRoute() // nuxt not vueuse const router = useRouter() // nuxt not vueuse const foo = useRouteParams('foo', '', { transform: String, route, router...

Thank you 🙏🏽 Would you mind adding some tests to cover the new handling?

I am not sure about setting the value on mounted. Let me try a different approach.

I think we want to have a pseudo `Math.random` generator that can be used with a seed. We can save the random seed on window. For the server-side and the...

IMO we should keep it as low level as possible. ```ts const {random} = useMathRandom() console.log(random.value) // i.e. 0.38238 ``` We should not provide a start or end value.

> Allow users to input a string I am not sure what you mean. If you mean the seed, this should not be exposed. It is an internal value that...