Since all lifecycle hooks in Vue.js
are just functions
, you can place any of them directly in the instance declaraction.
//JS
new Vue({
el: '#example',
data: {
...
},
methods: {
...
},
//LIFECYCLE HOOK HANDLING
created: function() {
...
},
ready: function() {
...
}
});