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>

 

posted on 2020-01-30 12:54  MyBeans  阅读(327)  评论(0编辑  收藏  举报