You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using a Laravel Jetstream stack with Vuetify 3 and Vue 3 - sadly when I use the v-btn it reloads the whole webpage instead of using the nicely provided progressbar and acting like a spa. I also noticed in the docs of v-btn that there is no mention of nuxt prop - so I am curious - is it possible to implement this again in Vuetify 3 and also include support for InertiaJs?
Re-introduce the props for setting special types of links, or at least introduce a way for the user/developer to make it compatible with whatever link type possible (preferably globally so it only has to be setup once.
Something like one of these two:
<v-btn inertia href="/some/path">Go here</v-btn>
See below:
createVuetify({linkResolver: (props,{ slots, emit, attrs })=>/** Render function like system to render the correct component */});
and then just use <v-btn link href="/some/path">Go Here</v-btn>
The text was updated successfully, but these errors were encountered:
Problem to solve
I am using a Laravel Jetstream stack with Vuetify 3 and Vue 3 - sadly when I use the
v-btn
it reloads the whole webpage instead of using the nicely provided progressbar and acting like a spa. I also noticed in the docs ofv-btn
that there is no mention ofnuxt
prop - so I am curious - is it possible to implement this again in Vuetify 3 and also include support for InertiaJs?This one misses now according to the docs: https://vuetifyjs.com/en/api/v-btn/#props-nuxt
Also see the old issue: #11573
Proposed solution
Re-introduce the props for setting special types of links, or at least introduce a way for the user/developer to make it compatible with whatever link type possible (preferably globally so it only has to be setup once.
Something like one of these two:
<v-btn inertia href="/some/path">Go here</v-btn>
and then just use
<v-btn link href="/some/path">Go Here</v-btn>
The text was updated successfully, but these errors were encountered: