├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── index.html ├── package.json ├── screenshots └── vuecake.gif ├── src ├── App.vue ├── assets │ ├── css │ │ ├── base.less │ │ └── reset.css │ ├── images │ │ ├── loading.png │ │ └── wow-12.png │ └── js │ │ ├── api.js │ │ ├── eventBus.js │ │ └── rem.js ├── main.js ├── pages │ ├── Main.vue │ ├── cart │ │ └── cart.vue │ ├── category │ │ └── category.vue │ ├── detail │ │ └── detail.vue │ ├── home │ │ └── home.vue │ ├── my │ │ ├── my.vue │ │ └── orderList.vue │ └── pay │ │ ├── pay.vue │ │ └── pay_suc.vue ├── router │ └── index.js └── vuex │ └── store.js ├── static └── .gitkeep └── test └── e2e ├── custom-assertions └── elementCount.js ├── nightwatch.conf.js ├── runner.js └── specs └── test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/config/test.env.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/vuecake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/screenshots/vuecake.gif -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/css/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/assets/css/base.less -------------------------------------------------------------------------------- /src/assets/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/assets/css/reset.css -------------------------------------------------------------------------------- /src/assets/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/assets/images/loading.png -------------------------------------------------------------------------------- /src/assets/images/wow-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/assets/images/wow-12.png -------------------------------------------------------------------------------- /src/assets/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/assets/js/api.js -------------------------------------------------------------------------------- /src/assets/js/eventBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/assets/js/eventBus.js -------------------------------------------------------------------------------- /src/assets/js/rem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/assets/js/rem.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/pages/Main.vue -------------------------------------------------------------------------------- /src/pages/cart/cart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/pages/cart/cart.vue -------------------------------------------------------------------------------- /src/pages/category/category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/pages/category/category.vue -------------------------------------------------------------------------------- /src/pages/detail/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/pages/detail/detail.vue -------------------------------------------------------------------------------- /src/pages/home/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/pages/home/home.vue -------------------------------------------------------------------------------- /src/pages/my/my.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/pages/my/my.vue -------------------------------------------------------------------------------- /src/pages/my/orderList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/pages/my/orderList.vue -------------------------------------------------------------------------------- /src/pages/pay/pay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/pages/pay/pay.vue -------------------------------------------------------------------------------- /src/pages/pay/pay_suc.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/pages/pay/pay_suc.vue -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/src/vuex/store.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/test/e2e/runner.js -------------------------------------------------------------------------------- /test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayid760/vue-cake-mall/HEAD/test/e2e/specs/test.js --------------------------------------------------------------------------------