From Vue 3.4, you can make use of v-bind same name shorthand

vue
<template>
<!-- You can now shorten this: -->
<img :id="id" :src="src" :alt="alt">

<!-- To this: -->
<img :id :src :alt>
</template>