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