Jonathan Reinink
Jonathan Reinink
I'm pretty sure this is an Inertia.js issue — there is a known problem with the scroll restoration in Firefox (https://github.com/inertiajs/inertia/pull/1099). There is already a fix in Inertia for this...
@nezaboravi Hey thanks, that's awesome to hear! 😊 Working on Inertia.js tonight, I think I figured out the issue here. By default when you don't define any scroll regions in...
> So if I ultimately want to have post creation form appear in a modal but I want that post creation view to have it's own route/controller etc should I...
I'm pretty sure this only happens in Safari, see #411
Hmm, I'm not sure I agree. To me this is about teaching in steps. Before introducing the form helper, I think it's super helpful to understand how simple it is...
Yeah okay, maybe something like this? ```vue Name: Email: Submit export default { data() { return { name: null, email: null, } }, methods: { submit() { this.$inertia.post('/users', { name:...
Hey! So I really like this PR, but the only issue is it's broken when running Inertia in SSR, since we recreate the wrapper `div#app` element in SSR: Vue 3:...
I am curious, why do you want this? The whole idea behind Inertia is that it detects the request type (regular HTML request vs Inertia request), and then returns the...
Hey folks! If you're still having this issue, can you update to the latest version of Inertia and the Vue 3 adapter, and let me know if this is still...
This is cool, thanks for submitting @pxlrbt. I'm going to do some testing with this. 👍