<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
</style>
</head>
<body>
<div id="app">
<img v-show='isShow' src="img/1.jpg" alt="">
<button v-on:click='change'>切换</button>
</div>
<script src="vue.js"></script>
<script>
const ab=new Vue({
el:'#app',
data:{
isShow:true
},
methods:{
change:function(){
this.isShow=!this.isShow;
}
}
})
</script>
</body>
</html>
Vue笔记6_v-show
最新推荐文章于 2024-01-15 22:32:11 发布
本文详细探讨了Vue.js中v-show指令的用法,从基础到高级应用场景,包括条件切换、动态条件、与其他指令的配合使用等。通过实例代码,深入理解v-show如何控制元素的显示与隐藏,以及它与v-if的区别。
摘要由CSDN通过智能技术生成