├── .gitignore
├── README.md
├── index.html
└── main.css
/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Vue.js Fundamentals
2 |
3 | [](https://vueschool.io/courses/vuejs-fundamentals)
4 |
5 | This repository contains the example code for the [Vue.js Fundamentals](https://vueschool.io/courses/vuejs-fundamentals) course.
6 |
7 | This Vue.js course will teach you and get you up and running with the fundamental concepts of Vue.js. Perfect if you haven't touched Vue before or you just getting started!
8 |
9 | #### Topics covered:
10 |
11 | - Introduction to two-way data binding
12 | - Template syntax and expressions
13 | - Vue directives, loops and conditional rendering
14 | - Vue Devtools
15 | - Handling user Inputs
16 | - Handling Events
17 | - Vue.js Methods and Computed Properties
18 | - Attribute Bindings and dynamic classes
19 | - Components
20 |
21 | The course is suitable for developers who do not yet know about Vue.js or are just getting started with Vue.
22 |
23 | The course is free. [Enroll at Vue School!](https://vueschool.io/courses/vuejs-fundamentals)
24 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |