Vue Guideline: Templates — Use v-on shorthand. Description: Cleaner event binding. Do: @event instead of v-on:event. Don't: Full v-on syntax. Good Example: <button @click="handler">. Bad Example: <button v-on:click="handler">. Severity: Low. Docs: .