├── .gitingore ├── README.md ├── components-props └── index.html ├── directives-activity └── index.html ├── events-methods └── index.html └── index.html /.gitingore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Product and Cart Static Code Demo 2 | 3 | This is one of the companion repos to the Vue.js course on the freeCodeCamp YouTube channel. 4 | The different demos are each located in their own folder. 5 | 6 | **Other Repos from this Tutorial Series** 7 | 8 | - [Basic, Static Product Cart Demo](https://github.com/gwenf/vue3-fcc-course-basic-product-cart-demo) 9 | - [Vue CLI Product Cart Demo](https://github.com/gwenf/vue3-fcc-course-vue-cli-product-cart-demo) 10 | 11 | Special thanks to [TheJaredWilcurt](https://github.com/TheJaredWilcurt) for helping out with the initial static code and doing pretty much all of the styling. 12 | -------------------------------------------------------------------------------- /components-props/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Vue 3 Basics 5 | 12 | 13 | 14 |
15 |
16 | 17 | 18 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /directives-activity/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Vue 3 Basics 5 | 18 | 19 | 20 |
21 |
22 | 23 |

{{ greeting }}

24 | 25 |
26 | 27 |
28 | 29 |
30 | 31 |
32 |
33 |
34 |
35 |
36 | 37 | 38 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /events-methods/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Vue 3 Basics 5 | 12 | 13 | 14 |
15 |
16 | 17 | 18 |
19 |
20 | 21 |
22 | 23 |
24 | 25 |

{{ message }}

26 | 27 |
28 |
29 | 30 | 31 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Vue 3 Basics 5 | 12 | 13 | 14 |
15 | 16 | 17 |
18 | 19 | 20 | 52 | 53 | 54 | --------------------------------------------------------------------------------