<!DOCTYPE html>标签:el,www,vue,false,name,绑定,js,011,Vue From: https://blog.51cto.com/u_15356972/6085207
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script type="text/javascript" src="../js/vue.js"></script>
</head>
<body>
<div id="root">
<h1>{{name}}</h1>
<lable>单项绑定</lable>
<input type="text" :value="name"><br>
<lable>双向绑定</lable>
<input type="text" v-model="name"><br>
<a :href="url">前往百度</a>
</div>
<script type="text/javascript">
Vue.config.productionTip = false;
new Vue({
el:'#root',
data:{
name:'虾米大王',
url:'http://www.baidu.com'
}
})
</script>
</body>
</html>