[Vuejs]-How to get the cookie value and put it into the Vuex store after refreshing page in vue

0👍

There is a onMounted lifecycle where the code inside will run whenever the vue component has been successfully mounted onto the DOM. You can put your function where it retrieves the value of your cookie in there so it will after mounted.

Leave a comment