[Vuejs]-Vue router with laravel

1👍

you should use the name instead of the URL.

In your case:

<router-link :to="{ name: 'iatiStanderd'}"> ... </router-link>

And btw, take care for the name it is iatiStandard not iatiStanderd 🙂

Leave a comment