vOnStyle
Control Vue v-on
directive style.
Possible options:
null
: Style ofv-on
directive won't be changed."short"
: Use short-hand form like@click
."long"
: Use long-hand form likev-on:click
.
Default option is null
.
Example for null
Input:
<button @click=""></button>
<button v-on:click=""></button>
Output:
<button @click=""></button>
<button v-on:click=""></button>
Example for "short"
Input:
<button @click=""></button>
<button v-on:click=""></button>
Output:
<button @click=""></button>
<button @click=""></button>
Example for "long"
Input:
<button @click=""></button>
<button v-on:click=""></button>
Output:
<button v-on:click=""></button>
<button v-on:click=""></button>