Vue 3 Composition API: Computed Properties
Let’s learn how to create computed properties in the new Composition API syntax. First, though we’ll need to add to our example application so we now have a list of people attending our event.
<template>
<div>
<p>Capacity: {{ capacity }}</p>
...
philipdevblog.hashnode.dev2 min read