随笔分类 - vue
摘要:感谢作者:https://cn.vuejs.org/v2/guide/forms.html 全局组件 Vue.component('component-a', { /* ... */ }) Vue.component('component-b', { /* ... */ }) Vue.compone
阅读全文
摘要:非常感谢作者,写的非常牛逼:https://cn.vuejs.org/v2/guide/ VUE : HELLO WORLD <!DOCTYPE html> <html> <head> <title>My first Vue app</title> <script src="https://unpk
阅读全文
摘要:本文参考来源:https://www.imooc.com/wenda/detail/554770 目前model 主要用于表单验证,配合prop,rules 来使用。 大概逻辑,:model 定位到数据,如下,:model = “form” 定位到data中的form,prop 定位到具体的字段,表
阅读全文