Last active
August 3, 2016 09:32
-
-
Save hectorlorenzo/defab7bb687d33e9c4911e67594df49e to your computer and use it in GitHub Desktop.
Vue.js Instance 1:1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Vue (options) { | |
this._init(options) | |
} | |
// install internals | |
initMixin(Vue) | |
stateMixin(Vue) | |
eventsMixin(Vue) | |
lifecycleMixin(Vue) | |
miscMixin(Vue) | |
// install instance APIs | |
dataAPI(Vue) | |
domAPI(Vue) | |
eventsAPI(Vue) | |
lifecycleAPI(Vue) | |
export default Vue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment