随笔分类 -  Vue

摘要:其实v-model的本质就是 v-bind:value和v-on:input的组合使用 <div id="app"> <div>{{msg}}</div> <input type="text" v-bind:value="msg" v-on:input="handle"> </div> <scrip 阅读全文
posted @ 2020-07-02 09:43 peterWXM 阅读(228) 评论(0) 推荐(0)
摘要:1 <!-- 自定义指令 --> 2 <input type="text" class="form-control" v-model="keywords" v-focus> 3 4 //定义全局指令 5 6 Vue.directive('focus',{ 7 bind:function(el){ 8 阅读全文
posted @ 2020-04-03 12:30 peterWXM 阅读(141) 评论(0) 推荐(0)