LEARNING BY VUEING

Components
14 / 42

With Vue, we can easily break out concerns into separate components. Here, in App.vue we import the VCounter component (second tab in code editor), register it in the components property, and then render it.

Try adding another <VCounter /> to the template. Each VCounter component has its own local state, so you can increment the counters apart from each other.