[Vuejs]-Don't see a div into a vue component

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";
   }
}

Leave a comment