vue(四)--属性绑定

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>