<!DOCTYPE html>
<html>
<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>user_input.html</title>
<script src="../js/vue.js"></script>
</head>
<body>
<div id="example">
<p>您最喜欢的游戏是:{{game}}</p>
<!-- v-model 绑定控件内容 -->
<input type="text" v-model="game">
</div>
</body>
<script>
new Vue({
el: "#example",
data: {
game: "超级马里奥"
}
});
</script>
</html>
原文:https://www.cnblogs.com/Lunix-touch/p/13866324.html