https://github.com/palashmon/vuejs-basics
Simplest case examples on VueJS
https://github.com/palashmon/vuejs-basics
component-communication examples inline-templates loop named-slot slot v-bind v-if v-show vue vue-components vue-directive vuejs
Last synced: 7 months ago
JSON representation
Simplest case examples on VueJS
- Host: GitHub
- URL: https://github.com/palashmon/vuejs-basics
- Owner: palashmon
- Created: 2017-03-13T16:01:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-02-25T07:41:27.000Z (over 1 year ago)
- Last Synced: 2024-02-25T08:34:09.047Z (over 1 year ago)
- Topics: component-communication, examples, inline-templates, loop, named-slot, slot, v-bind, v-if, v-show, vue, vue-components, vue-directive, vuejs
- Language: HTML
- Homepage:
- Size: 28.3 KB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learning VueJS Basics




Hey there, this repo contains some simplest case examples on VueJS for learning purpose.
Following topics have been covered so far:
- [x] [CH 01 - Creating Vue Instance](/01-creating-vue-instance)
- [x] [CH 02 - Bind Element Attributes](/02-bind-element-attributes)
- [x] [CH 03 - Conditional Rendering with v-if](/03-conditional-rendering-with-v-if)
- [x] [CH 04 - Conditional Rendering with v-show](/04-conditional-rendering-with-v-show)
- [x] [CH 05 - Loops in Vue](/05-loops)
- [x] [CH 06 - Two Way Binding](/06-two-way-binding)
- [x] [CH 07 - Handling Events](/07-handling-events)
- [x] [CH 08 - Computed Properties](/08-computed-properties)
- [x] [CH 09 - Class Binding](/09-class-binding)
- [x] [CH 10 - Component Basics](/10-components-basics)
- [x] [CH 11 - Component Within Component](/11-components-within-components)
- [x] [CH 12 - Component Example - Part 1](/12-components-example-01)
- [x] [CH 13 - Component Example - Part 2](/13-components-example-02)
- [x] [CH 14 - Component communication - Part 1](/14-component-communication-1)
- [x] [CH 15 - Component communication - Part 2](/15-component-communication-2)
- [ ] CH 16 -Thanks!