Override

If you want a particular property to exhibit override behavior within a component, you must explicitly specify the property name and value. For example, specifying the label property as follows ensures that the default label value is overridden and the new value takes effect. You can apply this for each component.

<va-select-input
  :label="$t('demo.currencyId')"
  reference="currencies"
  v-model="model.currencyId"
></va-select-input>