I want to create a button that redirects to /forgot-password?rol=XXXX on vuetify. Currently I'm doing this manually but vuetify docs especify it can be done with an object. But I didn't find anything specifying what kind of object or requirements it must have.
How can I pass the arguments as an object? Is that object a URL?
<v-btn
class="secondary--text"
x-small
plain
v-t="'components.login.forgot_password'"
:href="`/forgot-password?rol=${rol}`"
>
</v-btn>