├── .babelrc ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── dist └── .gitkeep ├── index.html ├── karma.conf.js ├── package.json └── src ├── App.vue ├── components ├── SovConsole.vue ├── SovMenu.vue ├── SovOrders.vue └── menuitems │ ├── ItemA.vue │ ├── ItemB.vue │ └── ItemC.vue ├── main.js └── vuex ├── modules ├── menu.js └── orders.js └── store.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"] 3 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/README.md -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/index.html -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/SovConsole.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/src/components/SovConsole.vue -------------------------------------------------------------------------------- /src/components/SovMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/src/components/SovMenu.vue -------------------------------------------------------------------------------- /src/components/SovOrders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/src/components/SovOrders.vue -------------------------------------------------------------------------------- /src/components/menuitems/ItemA.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/src/components/menuitems/ItemA.vue -------------------------------------------------------------------------------- /src/components/menuitems/ItemB.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/src/components/menuitems/ItemB.vue -------------------------------------------------------------------------------- /src/components/menuitems/ItemC.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/src/components/menuitems/ItemC.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/src/main.js -------------------------------------------------------------------------------- /src/vuex/modules/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/src/vuex/modules/menu.js -------------------------------------------------------------------------------- /src/vuex/modules/orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/src/vuex/modules/orders.js -------------------------------------------------------------------------------- /src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenjaminListwon/short-order-vue/HEAD/src/vuex/store.js --------------------------------------------------------------------------------