v-bind通过v-bind进行属性绑定v-bind:href, 可以简写成 :href
<body> <div id="app"> <a v-bind:href="page">点击</a> <a :href="page">点击</a> </div> <script> new Vue({ el:‘#app‘, data:{ page:‘https://www.12306.cn/index/‘ } }) </script> </body>
原文地址:https://www.cnblogs.com/crazy-lc/p/12242533.html
时间: 2024-10-09 23:22:59