随笔分类 -  vue

解决在vscode中eslint在vue后缀文件中保存时无法自动格式化的问题
摘要:在setting.json中加入如下内容 参考:http://www.ptbird.cn/vscode-autosave-eslint-support-vue.html 阅读全文
posted @ 2018-09-26 21:14 爬虫一只 阅读(4718) 评论(0) 推荐(0)
vue父子组件实现v-model
摘要:话不多说,直接上代码 <div id="app"> <price-input v-bind:value="price" v-on:input="price = arguments[0]" ></price-input> <price-input v-model='price' ></price-in 阅读全文
posted @ 2018-09-03 11:20 爬虫一只 阅读(4438) 评论(0) 推荐(0)