摘要: MVC介绍 MVC的解释千千万,唯一统一的认识就是MCV分别指model、view、controller,至于其它的咱也不知道对错。 MVC是把业务按照M、V、C的功能进行解耦: Model用来管理业务逻辑相关的数据以及对数据的处理方法 View=render(data)用来展示Model里数据的当 阅读全文
posted @ 2020-07-20 05:18 fourther 阅读(220) 评论(0) 推荐(0) 编辑
摘要: vue的俩种版本 完整版:vue.js 运行版:vue.runtime.js 俩者区别主要有: template和render的用法 说白了,完整版支持template语法,而运行版不支持template语法。 1、template的使用 // 需要编译器 new Vue({ template: ' 阅读全文
posted @ 2020-07-20 05:09 fourther 阅读(876) 评论(0) 推荐(0) 编辑