When passing down state, computed fields, props, etc. as props we currently pass down the same key and value :initialCount="initialCount".
:initialCount="initialCount"
You can avoid this using the following syntax:
<VCounter v-bind="{ buttonLabel, initialCount }" />
Try it out in the code editor.