My goal is to accomplish this task
@click="update_value && selected = true"
Unfortunately, neither of these options work:
@click="update_value"
@click="selected = true">
Is there a way to execute multiple methods with a single event handler without the need for creating a parent function?