I was trying to understand a Vue code when I saw something like this
<q-field
v-if="isEditing"
:label="to.label"
:helper="helper"
Can someone explain me what does this:label="to.label" mean in VueJS
If you want to bind any dynamic behaviour, we need to use 'v-' prefix. in shorthand we can use ':'
full syntax v-bind:href="url"
shorthand :href="url"
In vuejs documentation you can read how to bind props , here is the full explanation about this : https://v2.vuejs.org/v2/guide/components-props.html
Simply if I want to bind prop from parent component to child , I can use :name_of_prop="value_of_prop"
This ':' are short hand from v-bind :)