This is the repository used to explain the basic architecture and usage of vue js.
npm install
npm run serve
vue cli vue cheetsheet vue lifecycle
- App Entry point (App.vue)
- Basic Async loading (App.vue within the created method)
- Data definition (private component instance variable)
- Property definition (Variables provided to the component by its parent)
- Advance property declaration (components/Post.vue)
- Computed properties (Properties with superpower - components/Post.vue)
- Methods - Logical functions to be run within a component
- Mixins - Logical action that can be abstracted from the components