├── .gitignore ├── Lesson3-3 ├── style.css ├── webpack.config.js ├── entry.js ├── content.js └── index.html ├── README.md ├── images ├── defaultAvatar.png └── bill gates & ---<<<@.jpg ├── css ├── lesson1-3.css ├── lesson1-1.css └── lesson2-1.css ├── docs ├── dist │ └── 77901b04f4a8e72fcf03ee1313f4717a.png └── index.html ├── Lesson3-4 ├── main.js ├── CompanyLogo.vue ├── index.html ├── CompanyTitle.vue ├── webpack.config.js └── package.json ├── .editorconfig ├── Lesson1-2 ├── ex-2.html └── ex-1.html ├── Lesson1-4 ├── ex-2.html ├── ex-3.html └── ex-1.html ├── Lesson2-3 ├── ex_2.html ├── ex_3.html ├── ex_1.html ├── ex_4.html └── ex_5.html ├── Lesson1-3 ├── ex-2.html └── ex-1.html ├── Lesson2-2 ├── ex_3.html ├── ex_4.html ├── ex_2.html ├── ex_1.html ├── ex_5.html └── ex_6.html ├── Lesson2-1 ├── ex-4.html ├── ex-3.html ├── ex-2.html └── ex-1.html ├── Lesson1-1 ├── ex-2.html ├── ex-1.html └── ex-3.html ├── Lesson2-4 ├── ex_1.html ├── ex_3.html └── ex_2.html ├── Lesson3-1 ├── ex_5.html ├── ex_6.html ├── ex_3.html ├── ex_4.html ├── ex_2.html └── ex_1.html └── Lesson3-2 ├── flightInfo_2.html ├── flightInfo_1.html ├── ex_1.html ├── ex_2.html ├── ex_3.html └── ex_4.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /Lesson3-3/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lesson3-3/webpack.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lesson3-3/entry.js: -------------------------------------------------------------------------------- 1 | document.write(require('./content.js')) 2 | -------------------------------------------------------------------------------- /Lesson3-3/content.js: -------------------------------------------------------------------------------- 1 | module.exports = 'content.js 说:webpack 我看行!' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 极客学院 Vue.js 课程示例代码 2 | 3 | [极客学院](http://www.jikexueyuan.com/) Vue.js 课程的示例代码。 4 | 5 | -------------------------------------------------------------------------------- /images/defaultAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMario/vue-course/HEAD/images/defaultAvatar.png -------------------------------------------------------------------------------- /css/lesson1-3.css: -------------------------------------------------------------------------------- 1 | .item { 2 | cursor: pointer; 3 | } 4 | .subitems div { 5 | padding-left: 15px; 6 | } 7 | -------------------------------------------------------------------------------- /images/bill gates & ---<<<@.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMario/vue-course/HEAD/images/bill gates & ---<<<@.jpg -------------------------------------------------------------------------------- /docs/dist/77901b04f4a8e72fcf03ee1313f4717a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KingMario/vue-course/HEAD/docs/dist/77901b04f4a8e72fcf03ee1313f4717a.png -------------------------------------------------------------------------------- /Lesson3-4/main.js: -------------------------------------------------------------------------------- 1 | var CompanyTitle = require('./CompanyTitle.vue') 2 | var Vue = require('vue') 3 | 4 | new Vue({ 5 | el: 'body', 6 | components: { 7 | CompanyTitle 8 | } 9 | }) 10 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /Lesson3-3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 || # | 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 |
26 | Vue.js前端框架详解-基础&进阶&实战
27 |
28 |
15 |
36 |
东方航空 MU9345 波音737-800 经济舱
22 |
东方航空 MU9345 波音737-800 经济舱
32 |
上海航空 FM9345
35 | | {{$index + 1}}.{{cost.type}} | 53 |{{cost.description}} | 54 |
|---|---|
| 57 | | {{cost.price | currency '¥'}} × {{cost.count}} | 58 |
Message sent to the child: {{msgToTheChild}}
19 || 48 | |
| i | 55 |i + 1 | 56 |
| 59 | 60 | | 61 |62 | 63 | | 64 |
| {{item}} | 69 |{{item + 1}} | 70 |
| 73 | |