Vモデル - 双方向のデータバインディング

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

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>

<body>

    <div id="app">
        <h1>{{greeting}}</h1>
        <input type="text" v-model="greeting">
    </div>


    <script src="./vue.js"></script>
    <script>

       
        const app = new Vue({
            el: '#app',
            data: {
                greeting: 'Hello Vuejs'
            }
        });



    </script>
</body>

</html>
公開された151元の記事 ウォンの賞賛1 ビュー1881

おすすめ

転載: blog.csdn.net/qq_45802159/article/details/103816313