<!DOCTYPE html>
<html>
<script src="https://unpkg.com/vue/dist/vue.min.js"></script>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<div id="app">
<table>
<td>
"v-model" <input v-model="message1" placeholder="请输入..."></td>
<td><p>输入的是:{{message1}}</p></td>
<tr>
<td>"v-model"的语法糖(@input):</v-model><input @input="handleMessage"></td>
<td><p>输入的是:{{message2}}</p></td>
</tr>
<tr>
<td>checkbox:<input type="checkbox" v-model="checked" id="checked"></td>
<td><p>checkbox的值是:{{checked}}</p></td>
</tr>
<tr>
<td>
radio1:<input type="radio" v-model="radio" id="radio" value="1">
radio1:<input type="radio" v-model="radio" id="radio" value="2">
radio1:<input type="radio" v-model="radio" id="radio" value="3">
radio1:<input type="radio" v-model="radio" id="radio" value="4"></td>
<td><p>radio的值是:{{radio}}</p></td>
</tr>
</table>
</div>
</body>
<script>
var app = new Vue({
el: '#app',
data:{
message1:"",
checked:false,
radio:'',
radioValue:"",
message2:""
},
methods:{
handleMessage:function(e){
this.message2=e.target.value;
}
}
})
</script>
</html>