[Vuejs]-How to watch for a value which depends on another value vue?

0👍

Based on a comment by Ivo Gelov, I arrived at

return this.getTopic((this.user.topics || {})[this.user.selectedTopic])

This seems to do the trick.

Leave a comment