Перейти к содержимому

useVueConsistentVOnStyle

Это содержимое пока не доступно на вашем языке.

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

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

<div v-on:click="onClick" />
<div @click="onClick" />

Configures the preferred directive style. Accepts "shorthand" or "longhand". Default: "shorthand".

biome.json
{
"linter": {
"rules": {
"nursery": {
"useVueConsistentVOnStyle": {
"options": {
"style": "longhand"
}
}
}
}
}
}
<div @click="onClick" />
<div v-on:click="onClick" />