0👍
✅
You need to get the stored values from localStorage and set it up in created() hook
created () {
this.types = localStorage.getItem('plan')
}
For more information about hooks,
https://v2.vuejs.org/v2/guide/instance.html#Instance-Lifecycle-Hooks
Source:stackexchange.com