It appears that a vuejs computed property will only be triggered to update if it is actually bound in the template or view. Is this correct?
The reason I ask is because I'm trying to use a computed as a watcher for a prop that is passed to my component, but I don't actually want to display anything from the computed. I just want the computed to update another data item when the prop changes. If the computed requires a binding to actually work, I think I'm better off using a watch in this case.