[Vuejs]-Why is my router-link tag not working with my bootstrap framework?

0👍

You need to pass the instance of your router to your main Vue instance like so:

//your router is declared as default in its own file so
//in your main Vue instance...

import router from './my_router'
new Vue({
  el: '#app',
  router
})

Leave a comment