当前位置: 代码迷 >> 综合 >> vue中 v-on 和 v-bind 的区别 ?
  详细解决方案

vue中 v-on 和 v-bind 的区别 ?

热度:77   发布时间:2023-09-13 10:38:26.0

v-bind指令用于设置HTML属性:v-bind:href 缩写为 :href

<!-- 完整语法 -->
<a v-bind:href="url">123</a>
<!-- 缩写 -->
<a :href="url">123</a>

v-on 指令用于绑定HTML事件 :v-on:click 缩写为 @click

<!-- 完整语法 -->
<a v-on:click="doSomething">123</a>
<!-- 缩写 -->
<a @click="doSomething">123</a>
  相关解决方案