0๐
:href=โโ expecting string with url to navigation, but you using method.
Use @click instead :href, if you want to use method.
<a @click="doRedirect">... </a>
Or, may be, move it to computed block
computed: {
excursionesUrl () {
return APP_URL+"/excursiones/create";
}
}
Source:stackexchange.com