0👍
you can use a computed method to get the updated value. So if user is the value you are looking for, it will be something like this
`computed: {
user() { return this.$store.commit('/getUser')} //your store mutation/getter}`
- [Vuejs]-How to accept multiple file types in swal sweetalert
- [Vuejs]-Vuejs problem ; How to bind new elements added to DOM?
Source:stackexchange.com