In Template
<LeaderboardChart v-show="leaderboardNotEmpty"/>
The computed property
computed: {
leaderboardNotEmpty(){
console.log(this.$store.getters.getLeaderboard.length > 0)
return this.$store.getters.getLeaderboard.length > 0
}
}
The console.log returns true but the v-show still returns display: none. I would like to understand why
Edit: I found the error. Another completely different component threw an error and canceled the complete render process from vue. Found it by commenting out all other components.