1👍
Binding a value to a prop should be done like v-bind:attr="value"
or :attr="value"
, and handling events should be done in this way v-on:click="eventHandler"
or @click="eventHandler"
:
<Button
@click="currentStep = 1"
:text='getTranslation("intro_modal_persona_select_button_next")'
bgColor="transparent"
txtColor="#d64ba1"
/>
Source:stackexchange.com