1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script src="./js/vue.js"></script>
- </head>
- <body>
- <div id="app">
- <!-- v-if 直接移除元素 -->
- <h1 v-if="isShow">hello world</h1>
- <h1 v-else>你好世界</h1>
- <!-- v-show 仅能控制元素的显示及隐藏 -->
- <!-- v-show 与 v-if 的区别 -->
- <!-- v-show 控制的是display属性 none -->
- <!-- <h1 v-show="isShow">hello world</h1> -->
- <button @click="toogleShow">显示/隐藏</button>
- </div>
- <script>
- new Vue({
- el:"#app",
- data:{
- isShow:true
- },
- methods:{
- toogleShow(){
- // this.isShow = false;
- this.isShow = !this.isShow;
- }
- }
- })
- </script>
- </body>
- </html>
|