Computed properties allow you to define properties that automatically update when their dependencies change.
computed: { fullName() { return this.firstName + " " + this.lastName; } }
data() { return { firstName: "John", lastName: "Doe" }; }