摘要: Vue版本 Vue完整版 有编译器compiler,体积大功能多,可以直接把html字符串变成DOM节点 视图,此处为html字符串,写在index.html里或者写在new Vue构造选项template里 引入方法 cdn引入:在index.html里用script标签引入,bootcdn:vu 阅读全文
posted @ 2020-06-12 20:19 过程是风景 阅读(121) 评论(0) 推荐(0)
摘要: MVC(Model–View–Controller) Model:数据模型 负责操作所有数据View:视图 负责所有UI界面Controller:控制器 负责其他 //数据放在m const m = { //1.有个数据本数 data: {}, //2.可以对数据增删改查 create() {}, 阅读全文
posted @ 2020-06-12 07:35 过程是风景 阅读(151) 评论(0) 推荐(0)