Vue Exercise Six: Remember the password prompt box 01_06_

Demo online address:
https://sx00xs.github.io/test/6/index.html
----------------------------- ----------------------------------
IDE: VSCode
file formats: .vue
resolve to be completed :()

<Template> 
  <div the above mentioned id = "App"> 
    <div class = "Outer"> 
      < label 
      @mouseover = "handleShow" 
      @mouseout = "handleHide" 
      > <= the INPUT of the type "the CheckBox"> auto-login </ label within two weeks > 
      <div class = "Tips"  
      v the -show = "Show" 
      > for your information, please do not use this feature on Internet cafes or public computer! </ div> 
    </ div> 
  </ div> 
</ Template> 
<Script> 
Export default { 
  Data: function () {
     return { 
      Show:
      true
    },
    handleHide(){
      this.show=false
    }
  }
}
</script>

 

Guess you like

Origin www.cnblogs.com/sx00xs/p/11265598.html