Is there a way to prevent this button from redirecting to the specified URL?
I want to implement a validation check in my method, and if it fails, I need to stop this button from performing any action.
Any suggestions or assistance would be highly appreciated :)
<v-btn
@click="checkIfCanCreateTO($event)"
:to="{ name: 'New', params: { selected: selectedItems, readonly: false } }"
>
<v-icon small class="mr-2">mdi-account-plus</v-icon>
Create New with
{{ selectedItems.length }} item(s)
</v-btn>