Basic Example# Computed properties allow us to declaratively compute derived values. However, there are cases where we need to perform "side effects" in reaction to state changes - for example, mutating the DOM, or changing another piece of state based on the result of an async operation. With Options API, we can use the watch option to trigger a function whenever a reactive property changes: ex..