vBindStyle
Control Vue v-bind directive style.
Possible options:
null: Style ofv-binddirective won’t be changed."short": Use short-hand form like:value."long": Use long-hand form likev-bind:value.
Default option is null.
Example for null
Input:
<input :value="">
<input v-bind:value="">
Output:
<input :value="">
<input v-bind:value="">
Example for "short"
Input:
<input :value="">
<input v-bind:value="">
Output:
<input :value="">
<input :value="">
Example for "long"
Input:
<input :value="">
<input v-bind:value="">
Output:
<input v-bind:value="">
<input v-bind:value="">