From Vue 3.4, you can make use of v-bind same name shorthand
<template>
<!-- You can now shorten this: -->
<img :id="id" :src="src" :alt="alt">
<!-- To this: -->
<img :id :src :alt>
</template>
A highly curated collection of practical tips, advanced patterns, and performance tweaks for Vue & Nuxt.