02_Vue模板语法
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script type="text/javascript" src="../js/vue.js"></script>
</head>
<body>
<div id="root">
<h1>插值语法</h1>
<h3>hello,{{name}}</h3>
<hr>
<h1>指令语法</h1>
<a v-bind:href="school.url">点我去尚硅谷学习1</a>
<a :href="school.url.toUpperCase()">点我去尚硅谷学习2</a>
</div>
</body>
<script type="text/javascript">
Vue.config.productionTip = false
new Vue({
el: '#root',
data: {
name: 'jack',
school:{
name:'lisa',
url:'http://www.atguigu.com'
}
}
});
</script>
</html>