Blame view

Front/js/login.js 509 Bytes
eba991ae   Antoine Duquenoy   Front-end : page ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  
  
  new Vue({
  
      el: '#app',
  
      data: {
          wrong: false,
          user: {
              login: "",
              password: "",
          }
      },
  
      computed: {
  
      },
  
      methods: {
          login: function () {
              if(this.user.login == "test") {
                  this.wrong = true;
                  window.setTimeout(() =>
                  {
                      this.wrong = false
                      console.log("reset")
                  }
                  , 4000)
              }
          }
      }
  
  })