warning
vue/v-bind-styleEnforce the shorthand v-bind: syntax (😃
Examples
❌ Incorrect
<template>
<my-component v-bind:foo="bar"></my-component>
</template>
✅ Correct
<template>
<my-component :foo="bar"></my-component>
</template>
Enforce the shorthand v-bind: syntax (😃
❌ Incorrect
<template>
<my-component v-bind:foo="bar"></my-component>
</template>
✅ Correct
<template>
<my-component :foo="bar"></my-component>
</template>