v-bind vincula dinamicamente um atributo HTML (ou prop de componente) a uma expressão JavaScript, para que o atributo seja atualizado reativamente quando os dados mudam. Seu atalho é apenas :.
<script setup>
import { ref } from "vue";
const imageUrl = ref("/photo.jpg");
const isDisabled = ref(true);
const id = ref("main");
</script>
<template>
<img v-bind:src="imageUrl" /> <!-- full syntax -->
<img :src="imageUrl" /> <!-- shorthand (idiomatic) -->
<button :disabled="isDisabled">Save</button>
<div :id="id" :data-index="5">...</div>
</template>
