vue v-model例子

code

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>

<body>

  <div id="app">
    账户:<input type="text" v-model="username"> <br><br>
    密码:<input type="password" v-model="password"> <br><br>
    <button @click="login">登录</button>
    <button @click="reset">重置</button>

  </div>

  <script src="https://cdn.bootcdn.net/ajax/libs/vue/2.7.14/vue.js"></script>


  <script>
    const app = new Vue({
      el: '#app',
      data: {
        username: '',
        password: '',
      },
      methods: {
        login() {
          console.log(this.username + ' ' + this.password);
        },
        reset() {
          this.username = '',
            this.password = ''
        }
      }
    })

  </script>

</body>

</html>

11
vue v-model例子_第1张图片

你可能感兴趣的:(web_html,javascript)