1👍
In your code the only property being passed to your tabell component is ‘livescore’ and that’s set to null and never changed. It looks like you need ‘livescore’ to be a computed property that has something to do with table_counter, not a data property, e.g.
computed: {
livescore() {
return this.articles[this.table_counter];
}
}
- [Vuejs]-Event between components vuejs / laravel
- [Vuejs]-Vue – Iterating through an object after deleting the child objects
Source:stackexchange.com