注释很详细,直接上代码
上一篇·
新增内容
- v-if与button响应回顾
- 事件方法写法
源码
<!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>
效果演示