vue中的属性绑定和双向数据绑定
Posted regina-o
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中的属性绑定和双向数据绑定相关的知识,希望对你有一定的参考价值。
<html lang="en">
<head>
<meta charset="UTF-8">
<title>属性绑定和双向数据绑定</title>
<script src="./vue.js"></script>
</head>
<body>
<div id="root">
<div title="this is hello world">hello world</div>//title作用是当鼠标放在hello world 上面的时候,显示this is hello world
</div>
<script>
new Vue({
el:"#root",
})
</script>
</body>
</html>
提示语可变的情况:
<html lang="en">
<head>
<meta charset="UTF-8">
<title>属性绑定和双向数据绑定</title>
<script src="./vue.js"></script>
</head>
<body>
<div id="root">
<div v-bind:title="title">hello world</div>//使用模板指令,等号后面跟的是一个JS表达式 v-bind:可以缩写成:
</div>
<script>
new Vue({
el:"#root",
data:{
title:"this is hello world"//此时数据项的title 和上面的属性做好了数据绑定
}
})
</script>
</body>
</html>
以上是关于vue中的属性绑定和双向数据绑定的主要内容,如果未能解决你的问题,请参考以下文章