```
<body>
<div id="app">
<button type="button" v-on:click="toggle_display">点我</button>
<div v-if="showContent">你看不到我</div>
<p v-if="age>=18">你是个大人啦</p>
<p v-else-if="age>=14 && age<18">少年</p>
<p v-else>小屁孩</p>
</div>
<script type="text/javascript">
var vue=new Vue({
el:"#app",
data:{
showContent:false,
age:13
},
methods:{
toggle_display:function(){
this.showContent=!this.showContent;
}
}
});
</script>
</body>
```