LEARNING BY VUEING

Props 3
17 / 42

When passing down state, computed fields, props, etc. as props we currently pass down the same key and value :initialCount="initialCount".

You can avoid this using the following syntax:

<VCounter
  v-bind="{ buttonLabel, initialCount }"
/>

Try it out in the code editor.