[Vuejs]-Ionic Vue pass Object via router-link

0👍

You have to declare in your routes that this route take props and you have to declare your path like this

   path: '/movieinfo/:movieInfo', 

movieInfo become a dynamic data and then you can pass it via router-link

Leave a comment