v-bind.prop — bind as DOM property. v-bind — bind as attribute.
v-bind:
1<template>2 <input :value="message" />3 <!-- Sets HTML attribute -->4</template>
v-bind.prop:
1<template>2 <input :value.prop="message" />3 <!-- Sets DOM property -->4</template>
When to use: