All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
v-bind
The v-bind with a string literal value can be changed to a static attribute definition.
<div v-bind:foo="'bar'"/> <div :foo="'bar'"/>
<div foo="bar"/> <div :foo="bar"/>