Skip to content


vue
  <input type="text" v-model="msg">
	// 等价于
	<input type="text" v-bind:value="msg" v-on:input="msg=$event.target.value">

**<font style="color:rgb(18, 18, 18);">v-model</font>**<font style="color:rgb(18, 18, 18);">:value="msg" </font>``@input<font style="color:rgb(18, 18, 18);">="msg=$event.target.value"</font>

  • @input
****