首页 > 其他 > 详细

Vue练习六:01_06_记住密码提示框

时间:2019-07-29 18:31:29      阅读:88      评论:0      收藏:0      [点我收藏+]

Demo 在线地址:
https://sx00xs.github.io/test/6/index.html
---------------------------------------------------------------
ide: vscode
文件格式:.vue
解析:(待补)

<template>
  <div id="app">
    <div class="outer">
      <label 
      @mouseover="handleShow"
      @mouseout="handleHide"
      ><input type="checkbox">两周内自动登陆</label>
      <div class="tips" 
      v-show="show"
      >为了您的信息安全,请不要在网吧或公用电脑上使用此功能!</div>
    </div>
  </div>
</template>
<script>
export default {
  data:function(){
    return{
      show:false
    }
  },
  methods:{
    handleShow(){
      this.show = true
    },
    handleHide(){
      this.show=false
    }
  }
}
</script>

 

Vue练习六:01_06_记住密码提示框

原文:https://www.cnblogs.com/sx00xs/p/11265598.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!