vue.js輸入框輸入值內容實時跟著變化

_code小學生發表於2018-03-24
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <!-- Vue.js -->
    <script src="https://unpkg.com/vue/dist/vue.min.js"></script>
</head>
<body>
 <div id="app">
     <input type="text" v-model="name" placeholder="你的名字">
    <h1>你好,{{ name }}</h1>
 </div>
</body>
</html>
<script>
    var myData = {
        name:''
    };
    var app = new Vue({
        el:'#app',
        data:myData,
    })
</script>

相關文章