-2👍
Maybe if you use the VBtn component directlty instead the Link element:
...
import {VBtn} from "vuetify/components";
<v-btn variant="text" :href="route('home')">Home </v-btn>
...
Also can help you the VBtn documentation
https://vuetifyjs.com/en/api/v-btn/
Source:stackexchange.com