[Vuejs]-How to keep the currentPage variable after clicking on the detail link Using Vue

0👍

Maybe in your case it makes sense to use Vuex. Vuex is something like a a globally store for your Vue-Application. You could set the “currentPage”-Variable in there and change it’s value by using “mutations”.

Leave a comment