v- 前缀作为一种视觉提示,用来识别模板中 Vue 特定的特性。
- v-bind
<a v-bind:href='url'></a>
缩写
<a :href='url'></a>
<button v-bind:disabled='someDynamicCondition'>Button</button>
缩写
<button :disabled='someDynamicCondition'>Button</button>
- v-on
<a v-on:click='doSomething'></a>
缩写
<a @click='doSomething'></a>