├── .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 |