0👍
This can be caused because you have no v-model
on your <select>
if you are trying to load the selected value from your database.
Also make sure your code used to retrive selectboxes from runs prior to your template rendering, in the created or mounted hooks.
Finally, make sure the data you retrieve is reactive (placed into a vuex store, or the data of your component, or a props)
- [Vuejs]-VueJS – The app cant locate the route
- [Vuejs]-Async vuex fetch action state filled if using variable in template getting error undefined
Source:stackexchange.com