<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Vue</title>
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>
</script>
</head>
<body>
<div id='app'>
<p>{{name}}</p>
<p>{{job}}</p>
<p>{{greet('afternoon')}}</p>
<a v-bind:href="website">web开发</a>
<input type="text" v-bind:value="job" />
<p v-html="webTag"></p>
</div>
</body>
</html>
<script>
new Vue({
el:"#app",
data:{
name:'核心',
job:'web开发',
website:'http://www.baidu.com',
webTag:"<a href='http://www.thenewstep.com'>Thenewstep</a>"
},
methods:{
greet:function(time){
return 'Good '+time+''+this.name+'!';
}
}
})
</script>
网友评论