├── .editorconfig ├── .gitignore ├── Lesson1-1 ├── ex-1.html ├── ex-2.html └── ex-3.html ├── Lesson1-2 ├── ex-1.html └── ex-2.html ├── Lesson1-3 ├── ex-1.html └── ex-2.html ├── Lesson1-4 ├── ex-1.html ├── ex-2.html └── ex-3.html ├── Lesson2-1 ├── ex-1.html ├── ex-2.html ├── ex-3.html └── ex-4.html ├── Lesson2-2 ├── ex_1.html ├── ex_2.html ├── ex_3.html ├── ex_4.html ├── ex_5.html └── ex_6.html ├── Lesson2-3 ├── ex_1.html ├── ex_2.html ├── ex_3.html ├── ex_4.html └── ex_5.html ├── Lesson2-4 ├── ex_1.html ├── ex_2.html └── ex_3.html ├── Lesson3-1 ├── ex_1.html ├── ex_2.html ├── ex_3.html ├── ex_4.html ├── ex_5.html └── ex_6.html ├── Lesson3-2 ├── ex_1.html ├── ex_2.html ├── ex_3.html ├── ex_4.html ├── flightInfo_1.html └── flightInfo_2.html ├── Lesson3-3 ├── content.js ├── entry.js ├── index.html ├── style.css └── webpack.config.js ├── Lesson3-4 ├── CompanyLogo.vue ├── CompanyTitle.vue ├── index.html ├── main.js ├── package.json └── webpack.config.js ├── README.md ├── css ├── lesson1-1.css ├── lesson1-3.css └── lesson2-1.css ├── docs ├── dist │ ├── 77901b04f4a8e72fcf03ee1313f4717a.png │ └── bundle.js └── index.html ├── images ├── bill gates & ---<<<@.jpg └── defaultAvatar.png └── js ├── jquery.js └── vue.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /Lesson1-1/ex-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |{{$index + 1}}.{{cost.type}} | 53 |{{cost.description}} | 54 |
---|---|
57 | | {{cost.price | currency '¥'}} × {{cost.count}} | 58 |
# | 22 |First Name | 23 |Last Name | 24 |Username | 25 |
---|---|---|---|
1 | 30 |Mark | 31 |Otto | 32 |@mdo | 33 |
2 | 36 |Jacob | 37 |Thornton | 38 |@fat | 39 |
3 | 42 |Larry | 43 |the Bird | 44 |
48 | |
i | 55 |i + 1 | 56 |
59 | 60 | | 61 |62 | 63 | | 64 |
{{item}} | 69 |{{item + 1}} | 70 |
73 | |
Message sent to the child: {{msgToTheChild}}
19 |