├── LICENSE
├── README.md
├── vue-console.html
└── vue.js
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## vue-console
2 |
3 | 
4 | 
5 |
6 | ## 介绍
7 |
8 | `vue-console` 通过console.log结合vue的源代码,通过一个简单的例子,观察Vue各个过程的变化
9 |
10 | ## 在线演示
11 | >请用chrome查看,并打开控制台看效果
12 | [演示地址](http://www.vue-console.xyz/)
13 |
14 | # 效果图
15 |
16 |
17 |
18 |
19 |
20 |
21 | ## 说明
22 | > 觉得对你有帮助,请点右上角的`Star`支持一下
23 | > 推荐一下我的另一个项目基于react的饿了吗项目(全家桶, 很适合react进阶用) [点这里](https://github.com/liuyangjike/react-elm)
24 |
25 | ## 启动
26 | >1.克隆项目
27 | >2.用chrome打开vue-console.html文件,再打开chrome控制台,就可以看到效果了
28 |
29 |
30 |
31 | ## 参考
32 | 本项目参考了
33 | [Vue技术内幕](http://hcysun.me/vue-design/)
34 | [Vue.js 源码解析](https://github.com/answershuto/learnVue)
--------------------------------------------------------------------------------
/vue-console.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |