ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
``` <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> ```