Tag: computed
-
Computed Property in Vue
Computed properties are a super handy feature that allows you to define functions that are cached based on their dependencies and are only re-evaluated when one of those dependencies changes. So why are computed properties so great? Well, they’re perfect for performing complex calculations or transformations on data before it’s displayed in the template. For…