Performance: Shorthand syntax (: and @)
LOW IMPACT
This affects how Vue templates compile and how event listeners and bindings are processed, impacting rendering speed and bundle size slightly.
<MyButton :title="buttonTitle" @click="handleClick" />
<MyButton v-bind:title="buttonTitle" v-on:click="handleClick" />
| Pattern | Template Size | Parsing Speed | Bundle Size Impact | Verdict |
|---|---|---|---|---|
| Verbose syntax (v-bind, v-on) | Larger | Slower | Slightly larger | [X] Bad |
| Shorthand syntax (:, @) | Smaller | Faster | Slightly smaller | [OK] Good |