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

 

<!-- 完整语法 -->
<a v-on:click="doSomething"></a>
<!-- 缩写 -->
<a @click="doSomething"></a>

 

相关文章:

  • 2022-12-23
  • 2021-05-01
  • 2022-12-23
  • 2021-08-18
  • 2022-03-04
  • 2021-12-09
猜你喜欢
  • 2022-01-17
  • 2022-12-23
  • 2022-12-23
  • 2021-10-17
  • 2021-12-08
  • 2021-04-02
相关资源
相似解决方案