vue实现点击按钮,内容部分显示隐藏

Posted 微笑

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue实现点击按钮,内容部分显示隐藏相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <script src = "https://unpkg.com/vue/dist/vue.js" ></script>
  <title>Document</title>
</head>
<body>
  <div id="wrap">
    <p v-if="seen">出来了</p>
    <button type="button" name="button" @click="change">{{message}}</button>
  </div>
  <script type="text/javascript">
  var app = new Vue({
    el:#wrap,
    data:{
      seen:true,
      message:隐藏
    },
    methods:{
      change:function(){
         this.seen = !this.seen
         if (this.seen) {
            this.message = 隐藏
         }else{
           this.message = 显示
         }
      }
    }
  })
    // var date = new Date();
    // console.log(date);//Tue Sep 26 2017 14:34:27 GMT+0800 (CST)
    // console.log(new Date().toLocaleString());//2017/9/26 下午2:34:27
    // var d = new Date().getTime();
    // console.log(d);//1506408973192
    // console.log(new Date(d).toLocaleString());//2017/9/26 下午2:56
  </script>
</body>
</html>

 

以上是关于vue实现点击按钮,内容部分显示隐藏的主要内容,如果未能解决你的问题,请参考以下文章

php 设置按钮被点击后自动隐藏

js 点击隐藏显示问题

显示/隐藏片段并以编程方式更改可见性属性

vue清空表单数据后显示所有列表内容

vue element ui 怎么点击按钮隐藏让另外一个按钮显示

VUE JS - 默认情况下如何隐藏 div?如果用户点击按钮,那么它应该使用 vue 显示