Pular para o conteúdo

useVueConsistentVBindStyle

Este conteúdo não está disponível em sua língua ainda.

biome.json
{
"linter": {
"rules": {
"nursery": {
"useVueConsistentVBindStyle": "error"
}
}
}
}

Enforce a consistent style for v-bind in Vue templates.

<div v-bind:foo="bar" />
<div :foo="bar" />

Configures the preferred directive style. Default: "shorthand".

biome.json
{
"linter": {
"rules": {
"nursery": {
"useVueConsistentVBindStyle": {
"options": {
"style": "longhand"
}
}
}
}
}
}
<div :foo="bar" />
<div v-bind:foo="bar" />