学习Vue的思路
1. 以一个例子为线索
new Vue() ---> this._init(options) --->

简单的options例子
this._init()方法中,
1)uid--实例的唯一标识
2)startTag,endTag--config.performance性能追踪

3)options._isComponent

Vue创建组件时才会有
4)$options--用于Vue实例的初始化

学习Vue的思路
1. 以一个例子为线索
new Vue() ---> this._init(options) --->
this._init()方法中,
1)uid--实例的唯一标识
2)startTag,endTag--config.performance性能追踪
3)options._isComponent
4)$options--用于Vue实例的初始化