vue--属性绑定

Posted crazy-lc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>

 

以上是关于vue--属性绑定的主要内容,如果未能解决你的问题,请参考以下文章

1.3 Vue属性绑定和双向数据绑定

Vue绑定数据 绑定属性

vue数据双向绑定原理

vue2.* 绑定属性 绑定Class 绑定style 03

vue中的属性绑定和双向数据绑定

vue指令 v-bind 属性绑定 动态渲染组件