vue233/09-v-model双向绑定属性使用/v-model基本使用.html

30 lines
582 B
HTML
Raw Normal View History

2022-10-15 10:05:34 +08:00
<!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>Document</title>
</head>
<body>
<div id="app">
<input type="text" name="" id="" v-model="message">
<br> data中的数据{{message}}
</div>
</body>
2022-11-19 11:19:25 +08:00
<script src="../00-tools/JavaScript/vue.js"></script>
2022-10-15 10:05:34 +08:00
<script>
const vue=new Vue({
el:"#app",
data:{
message:"你好呀"
},
methods: {
},
computed:{
}
})
</script>
</html>