码迷,mamicode.com
首页 > Web开发 > 详细

vue.js显示隐藏

时间:2017-06-05 17:58:47      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:copy   rom   改变   rip   from   this   set   doc   gui   

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>v-if、v-else、v-show</title>
  <script src="../js/vue.js"></script>
  <!--copy from http://vuejs.org.cn/guide/-->
</head>
<body>
  <div id="app">
    <p v-if="willShow">显示显示显示</p>
    <p v-else>隐藏隐藏隐藏隐藏</p>
    <button @click="fn()">改变</button>
  </div>
  <script>
    var vm=new Vue({
      el:"#app",
      data:{
        willShow:true
      },
      methods:{
        fn:function(){
          if(this.willShow==true){
            this.willShow=false;
          }else{
            this.willShow=true
          }
        }
      }
    });
  </script>
</body>
</html>

vue.js显示隐藏

标签:copy   rom   改变   rip   from   this   set   doc   gui   

原文地址:http://www.cnblogs.com/gerry/p/6946189.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!