v-bind 属性绑定

Posted elsons

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了v-bind 属性绑定相关的知识,希望对你有一定的参考价值。

1.v-bind:title="title" 绑定谁和谁绑定。

2.v-bind:title="title" 简写::title="title"

<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <script src="~/Scripts/vue/vue.js"></script>
    <title>Index</title>
</head>
<body>
    <div id="root" v-bind:title="title" v-on:click="handle">
        {{msg}}
    </div>
</body>
</html>
<script type="text/javascript">
    new Vue({
        el: "#root",
        data: {
            msg: "hello word",
            title: "我是标题"

        },
        methods: {
            handle: function () {
                this.msg = "你好"
            }
        }
    });

</script>

 

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

v-bind 属性绑定

v-bind动态绑定属性

Vue v-bind

Vue指令:v-bind动态属性绑定

Vue.js学习笔记:属性绑定 v-bind

第六节:Vue指令:v-bind动态属性绑定