Vue.js: Data is not updating with state change so the re-render does not happen
NOTE: at the bottom of this answer, see the general point I make about update/reactivity issues with Vue. Now, about the question, based on the code you posted, considering the template: <div v-for=”video in videos” :key=”video.id”> It picks the videos from: data () { return { videos: freeVideo } } Although it initializes from freeVideo, … Read more