vue快速入门(八)绑定方法

时间:2024-04-09 22:07:36
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <!-- 挂载点 --> <div id="root"> <button @click="onClick">点击切换隐藏与显示状态</button> <h1 v-if="isShow">Hello Vue</h1> </div> <!-- 导入vue的js代码 --> <script src="./lib/vue2.js"></script> <script> const app = new Vue({// Vue实例 el: '#root',// 挂载点 data: {// 数据 isShow:true }, methods: {// 方法 onClick(){ this.isShow = !this.isShow } } }) </script> </body> </html>