14.[Vue入门]v-model

完整代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>v-model</title>
</head>
<body>
    <div id="app">
        <input type="text" v-model="message">
        <h2 v-text="message"></h2>
    </div>

    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>

    <script>
        var app = new Vue({
            el: '#app',
            data: {
                message: ''
            }
        })
    </script>
</body>
</html>

14.[Vue入门]v-model
https://元气码农少女酱.我爱你/d7d9325cccc4/
作者
元气码农少女酱
发布于
2023年5月28日
许可协议