💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
``` <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> ```