File tree Expand file tree Collapse file tree 4 files changed +14
-10
lines changed Expand file tree Collapse file tree 4 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 2929- 系统支持多语言切换
3030- 系统权限
3131
32+ # 项目目录结构
33+ - VueBisc [ Vue 基础教程]
34+ - VueERP [ Vue 项目教程]
35+
3236# 技术点目录
33- - [ 认识 Vue] ( #vue )
34- - [ 认识数据驱动模式] ( #dd )
35- - [ 认识 MVVM 模式] ( #mvvm )
37+ - 认识 Vue
38+ - 认识数据驱动模式
39+ - 认识 MVVM 模式
3640- [ 模版语法] ( https://github.com/dk-lan/vue-erp/tree/master/VueBasic/%E6%A8%A1%E7%89%88%E8%AF%AD%E6%B3%95 )
3741
38- # 认识 Vue {vue}
42+ # 认识 Vue
3943关于 Vue 的描述有不少,不外乎都会拿来与 Angular 和 React 对比,同样头顶 MVVM 双向数据驱动设计模式光环的 Angular 自然被对比的最多,但到目前为止,Angular 在热度上已明显不及 Vue,性能已成为最大的诟病。
4044
4145在我看来,Vue 和 Angular 的对比有种早些年 Java 和 ASP.NET 的对比,对于开发者而言,ASP.NET 官方本身已实现好了大量的框架和功能,使用起来非常的方便快捷,同时也提供了无限的可扩展性,对比起 Java 而言,后者在本身框架和功能上都不及 ASP.NET,但同样都拥有无限的可扩展性,相比之下,本来 ASP.NET 很有一统天下的可能,但现实终归现实,ASP.NET 本身的框架和功能实现并没有换来多少称赞,反在性能和安全性方面被诟病。回看 Vue 和 Angular 的阵营,我也总有这么一种感觉。
5155 })
5256```
5357
54- # 认识数据驱动模式 {#dd}
58+ # 认识数据驱动模式
5559开始接触前端编程的基本上都是先学习 DOM 节点操作,jQuery 在这一领域上一度成为了标准,所以在前端编程的领域中,jQuery 几乎是每个开发者的标配。随着前后端分离的成熟,产品或项目都趋于分布式部署,开发者已不满足于操作 DOM 节点, 设计模式便慢慢的被前端化。
5660
5761数据驱动的设计模式在思维逻辑上与 DOM 节点操作完全不一样。
7680
7781```
7882
79- # 认识 MVVM 模式 {#mvvm}
83+ # 认识 MVVM 模式
8084M:Model,称之为数据模型,在前端以对象的形式表现。
8185``` javascript
8286 var data = {message: ' 我就是一个数据模型' }
Original file line number Diff line number Diff line change 22< html >
33 < head >
44 < meta charset ="UTF-8 ">
5- < title > </ title >
5+ < title > 模版语法-指令 </ title >
66 < script src ="https://unpkg.com/vue/dist/vue.js "> </ script >
77 < style type ="text/css " media ="screen ">
88 [v-cloak ]{
Original file line number Diff line number Diff line change 33< head >
44 < meta charset ="utf-8 ">
55 < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6- < title > </ title >
6+ < title > 模版语法-插值 </ title >
77 < script src ="https://unpkg.com/vue/dist/vue.js "> </ script >
88</ head >
99< body >
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ var vm = new Vue({
4444 }
4545})
4646```
47- [ 插值效果] ( https://dk-lan.github.io/vue-erp/VueBasic/%E6%A8%A1%E7%89%88%E8%AF%AD%E6%B3%95/%E6%8F%92%E5%80%BC .html )
47+ [ 插值效果] ( https://dk-lan.github.io/vue-erp/VueBasic/TemplateSyntax/Interpolations .html )
4848
4949## 缩写
5050### v-bind 缩写
@@ -250,4 +250,4 @@ var vm = new Vue({
250250 </tbody >
251251</table >
252252
253- [ 指令效果] ( https://dk-lan.github.io/vue-erp/VueBasic/%E6%A8%A1%E7%89%88%E8%AF%AD%E6%B3%95/%E6%8C%87%E4%BB%A4 .html )
253+ [ 指令效果] ( https://dk-lan.github.io/vue-erp/VueBasic/TemplateSyntax/Directives .html )
You can’t perform that action at this time.
0 commit comments