<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>属性和侦听器</title>
<script src="vue.min.js"></script>
</head>
<body>
<div id = "text">
<div v-show = "show" >hello world</div>
<div v-if = "show" >hello world</div>
<button @clifick = "handleClick">button</button>
<ul>
<li v-for = "(item,index) of list" key = "index">{{item}}</li>
</ul>
</div>
<script>
new Vue({
el: "#text",
data: {
show : true,
list: [1,2,3]
},
methods: {
handleClick: function(){
this.show = false
}
}
})
</script>
</body>
</html>