企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
``` <!DOCTYPE html> <html lang="en"> <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>Document</title> <script src="https://cdn.bootcss.com/vue/2.5.18-beta.0/vue.js"></script> <style> .show{ background: red; } .font{ color: wheat } </style> </head> <body> <div id="app"> <p :class="[isShow,color]" @click="handleClick">hello world</p> </div> <script> new Vue({ el:"#app", data:{ isShow:"show", color:"font" }, methods:{ handleClick(){ this.isShow = (this.isShow == "show") ? "":"show"; if(this.isShow == 'show'){ this.color="font" } else{ this.color = "" } } } }) </script> </body> </html> ```