├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── SECURITY.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── docs ├── favicon.ico ├── index.html └── static │ ├── css │ ├── app.25f450e64da2a40f7f68620b26129249.css │ └── app.25f450e64da2a40f7f68620b26129249.css.map │ ├── images │ ├── basket-table.jpg │ ├── bed.jpg │ ├── bunting.jpg │ ├── credenza.jpg │ ├── daybed1.jpg │ ├── daybed2.jpg │ ├── dining.jpg │ ├── mirror1.jpg │ ├── planter1.jpg │ ├── planter2.jpg │ ├── rack.jpg │ ├── rag.jpg │ ├── sofa1.jpg │ ├── sofa2.jpg │ ├── vanity.jpg │ └── wicker.jpg │ ├── js │ ├── app.98ca54aab77e002a23c1.js │ ├── app.98ca54aab77e002a23c1.js.map │ ├── manifest.2ae2e69a05c33dfc65f8.js │ ├── manifest.2ae2e69a05c33dfc65f8.js.map │ ├── vendor.daceb43b5d55c3f0c1a7.js │ └── vendor.daceb43b5d55c3f0c1a7.js.map │ └── websnap.png ├── favicon.ico ├── index.html ├── package.json ├── src ├── App.vue ├── api │ └── shop.js ├── assets │ ├── logo.vue │ └── styles.css ├── components │ ├── Banner.vue │ ├── Footer.vue │ ├── ProductList.vue │ ├── ShoppingCart.vue │ ├── Sidebar.vue │ └── TopNavigation.vue ├── currency.js ├── layout │ └── SideMainLayout.vue ├── main.js ├── router │ └── index.js ├── sections │ ├── cart.vue │ ├── decor.vue │ ├── furniture.vue │ └── index.vue └── store │ ├── actions.js │ ├── getters.js │ ├── index.js │ └── mutations.js └── static ├── .gitkeep ├── images ├── basket-table.jpg ├── bed.jpg ├── bunting.jpg ├── credenza.jpg ├── daybed1.jpg ├── daybed2.jpg ├── dining.jpg ├── mirror1.jpg ├── planter1.jpg ├── planter2.jpg ├── rack.jpg ├── rag.jpg ├── sofa1.jpg ├── sofa2.jpg ├── vanity.jpg └── wicker.jpg └── websnap.png /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/SECURITY.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/static/css/app.25f450e64da2a40f7f68620b26129249.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/css/app.25f450e64da2a40f7f68620b26129249.css -------------------------------------------------------------------------------- /docs/static/css/app.25f450e64da2a40f7f68620b26129249.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/css/app.25f450e64da2a40f7f68620b26129249.css.map -------------------------------------------------------------------------------- /docs/static/images/basket-table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/basket-table.jpg -------------------------------------------------------------------------------- /docs/static/images/bed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/bed.jpg -------------------------------------------------------------------------------- /docs/static/images/bunting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/bunting.jpg -------------------------------------------------------------------------------- /docs/static/images/credenza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/credenza.jpg -------------------------------------------------------------------------------- /docs/static/images/daybed1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/daybed1.jpg -------------------------------------------------------------------------------- /docs/static/images/daybed2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/daybed2.jpg -------------------------------------------------------------------------------- /docs/static/images/dining.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/dining.jpg -------------------------------------------------------------------------------- /docs/static/images/mirror1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/mirror1.jpg -------------------------------------------------------------------------------- /docs/static/images/planter1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/planter1.jpg -------------------------------------------------------------------------------- /docs/static/images/planter2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/planter2.jpg -------------------------------------------------------------------------------- /docs/static/images/rack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/rack.jpg -------------------------------------------------------------------------------- /docs/static/images/rag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/rag.jpg -------------------------------------------------------------------------------- /docs/static/images/sofa1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/sofa1.jpg -------------------------------------------------------------------------------- /docs/static/images/sofa2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/sofa2.jpg -------------------------------------------------------------------------------- /docs/static/images/vanity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/vanity.jpg -------------------------------------------------------------------------------- /docs/static/images/wicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/images/wicker.jpg -------------------------------------------------------------------------------- /docs/static/js/app.98ca54aab77e002a23c1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/js/app.98ca54aab77e002a23c1.js -------------------------------------------------------------------------------- /docs/static/js/app.98ca54aab77e002a23c1.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/js/app.98ca54aab77e002a23c1.js.map -------------------------------------------------------------------------------- /docs/static/js/manifest.2ae2e69a05c33dfc65f8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/js/manifest.2ae2e69a05c33dfc65f8.js -------------------------------------------------------------------------------- /docs/static/js/manifest.2ae2e69a05c33dfc65f8.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/js/manifest.2ae2e69a05c33dfc65f8.js.map -------------------------------------------------------------------------------- /docs/static/js/vendor.daceb43b5d55c3f0c1a7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/js/vendor.daceb43b5d55c3f0c1a7.js -------------------------------------------------------------------------------- /docs/static/js/vendor.daceb43b5d55c3f0c1a7.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/js/vendor.daceb43b5d55c3f0c1a7.js.map -------------------------------------------------------------------------------- /docs/static/websnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/docs/static/websnap.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/api/shop.js -------------------------------------------------------------------------------- /src/assets/logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/assets/logo.vue -------------------------------------------------------------------------------- /src/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/assets/styles.css -------------------------------------------------------------------------------- /src/components/Banner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/components/Banner.vue -------------------------------------------------------------------------------- /src/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/components/Footer.vue -------------------------------------------------------------------------------- /src/components/ProductList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/components/ProductList.vue -------------------------------------------------------------------------------- /src/components/ShoppingCart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/components/ShoppingCart.vue -------------------------------------------------------------------------------- /src/components/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/components/Sidebar.vue -------------------------------------------------------------------------------- /src/components/TopNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/components/TopNavigation.vue -------------------------------------------------------------------------------- /src/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/currency.js -------------------------------------------------------------------------------- /src/layout/SideMainLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/layout/SideMainLayout.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/sections/cart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/sections/cart.vue -------------------------------------------------------------------------------- /src/sections/decor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/sections/decor.vue -------------------------------------------------------------------------------- /src/sections/furniture.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/sections/furniture.vue -------------------------------------------------------------------------------- /src/sections/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/sections/index.vue -------------------------------------------------------------------------------- /src/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/store/actions.js -------------------------------------------------------------------------------- /src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/store/getters.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/src/store/mutations.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/images/basket-table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/basket-table.jpg -------------------------------------------------------------------------------- /static/images/bed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/bed.jpg -------------------------------------------------------------------------------- /static/images/bunting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/bunting.jpg -------------------------------------------------------------------------------- /static/images/credenza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/credenza.jpg -------------------------------------------------------------------------------- /static/images/daybed1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/daybed1.jpg -------------------------------------------------------------------------------- /static/images/daybed2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/daybed2.jpg -------------------------------------------------------------------------------- /static/images/dining.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/dining.jpg -------------------------------------------------------------------------------- /static/images/mirror1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/mirror1.jpg -------------------------------------------------------------------------------- /static/images/planter1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/planter1.jpg -------------------------------------------------------------------------------- /static/images/planter2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/planter2.jpg -------------------------------------------------------------------------------- /static/images/rack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/rack.jpg -------------------------------------------------------------------------------- /static/images/rag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/rag.jpg -------------------------------------------------------------------------------- /static/images/sofa1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/sofa1.jpg -------------------------------------------------------------------------------- /static/images/sofa2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/sofa2.jpg -------------------------------------------------------------------------------- /static/images/vanity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/vanity.jpg -------------------------------------------------------------------------------- /static/images/wicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/images/wicker.jpg -------------------------------------------------------------------------------- /static/websnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/vue_shopping_site_cart/HEAD/static/websnap.png --------------------------------------------------------------------------------