Each time I want to determine when multiple computed values are ready, I create another computed property like isFizzAndBuzzReady.
computed: {
fizz () {
return ['f', 'i', 'z', 'z'] // asynchronous data retrieval
},
buzz () {
return ['b', 'u', 'z', 'z'] // asynchronous data retrieval
},
isFizzAndBuzzReady () {
return this.fizz.length && this.buzz.length
}
}
Is there a more efficient method to verify that both values are ready?