├── .babelrc ├── .gitignore ├── .happypack ├── cache--1.json ├── cache--css.json ├── cache--js.json ├── s--1127144070 ├── s--1127144070.map ├── s--1234760282 ├── s--1234760282.map ├── s--1431284809 ├── s--1431284809.map ├── s--1975755683 ├── s--1975755683.map ├── s--1998424397 ├── s--1998424397.map ├── s--333643577 ├── s--333643577.map ├── s--496596180 ├── s--496596180.map ├── s--777031159 ├── s--777031159.map ├── s--875313428 ├── s--875313428.map ├── s-130684882 ├── s-130684882.map ├── s-1662909811 ├── s-1662909811.map ├── s-1669978561 ├── s-1669978561.map ├── s-1904225868 ├── s-1904225868.map ├── s-1933827370 ├── s-1933827370.map ├── s-727255632 └── s-727255632.map ├── .idea ├── dictionaries │ └── stevenzwzhai.xml └── vcs.xml ├── .travis.yml ├── README.md ├── index.html ├── manifest.json ├── package.json ├── pwa ├── index.html ├── logo.png ├── manifest.json └── sw.js ├── src ├── App.vue ├── api │ ├── API.js │ ├── config.js │ └── mock.js ├── assets │ └── logo.png ├── components │ ├── app-list │ │ ├── added-list.vue │ │ ├── app-list.vue │ │ ├── dialog.vue │ │ ├── no-add-list.vue │ │ └── pages.vue │ └── nav │ │ └── nav.vue ├── main.js └── router.js ├── webpack.config.js └── webpack.dll.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.happypack/cache--1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/cache--1.json -------------------------------------------------------------------------------- /.happypack/cache--css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/cache--css.json -------------------------------------------------------------------------------- /.happypack/cache--js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/cache--js.json -------------------------------------------------------------------------------- /.happypack/s--1127144070: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--1127144070 -------------------------------------------------------------------------------- /.happypack/s--1127144070.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--1127144070.map -------------------------------------------------------------------------------- /.happypack/s--1234760282: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--1234760282 -------------------------------------------------------------------------------- /.happypack/s--1234760282.map: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /.happypack/s--1431284809: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--1431284809 -------------------------------------------------------------------------------- /.happypack/s--1431284809.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--1431284809.map -------------------------------------------------------------------------------- /.happypack/s--1975755683: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--1975755683 -------------------------------------------------------------------------------- /.happypack/s--1975755683.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--1975755683.map -------------------------------------------------------------------------------- /.happypack/s--1998424397: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--1998424397 -------------------------------------------------------------------------------- /.happypack/s--1998424397.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--1998424397.map -------------------------------------------------------------------------------- /.happypack/s--333643577: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--333643577 -------------------------------------------------------------------------------- /.happypack/s--333643577.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--333643577.map -------------------------------------------------------------------------------- /.happypack/s--496596180: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--496596180 -------------------------------------------------------------------------------- /.happypack/s--496596180.map: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /.happypack/s--777031159: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--777031159 -------------------------------------------------------------------------------- /.happypack/s--777031159.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--777031159.map -------------------------------------------------------------------------------- /.happypack/s--875313428: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s--875313428 -------------------------------------------------------------------------------- /.happypack/s--875313428.map: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /.happypack/s-130684882: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s-130684882 -------------------------------------------------------------------------------- /.happypack/s-130684882.map: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /.happypack/s-1662909811: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s-1662909811 -------------------------------------------------------------------------------- /.happypack/s-1662909811.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s-1662909811.map -------------------------------------------------------------------------------- /.happypack/s-1669978561: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s-1669978561 -------------------------------------------------------------------------------- /.happypack/s-1669978561.map: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /.happypack/s-1904225868: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s-1904225868 -------------------------------------------------------------------------------- /.happypack/s-1904225868.map: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /.happypack/s-1933827370: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s-1933827370 -------------------------------------------------------------------------------- /.happypack/s-1933827370.map: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /.happypack/s-727255632: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.happypack/s-727255632 -------------------------------------------------------------------------------- /.happypack/s-727255632.map: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /.idea/dictionaries/stevenzwzhai.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.idea/dictionaries/stevenzwzhai.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/index.html -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/package.json -------------------------------------------------------------------------------- /pwa/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/pwa/index.html -------------------------------------------------------------------------------- /pwa/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/pwa/logo.png -------------------------------------------------------------------------------- /pwa/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/pwa/manifest.json -------------------------------------------------------------------------------- /pwa/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/pwa/sw.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/api/API.js -------------------------------------------------------------------------------- /src/api/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/api/config.js -------------------------------------------------------------------------------- /src/api/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/api/mock.js -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/app-list/added-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/components/app-list/added-list.vue -------------------------------------------------------------------------------- /src/components/app-list/app-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/components/app-list/app-list.vue -------------------------------------------------------------------------------- /src/components/app-list/dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/components/app-list/dialog.vue -------------------------------------------------------------------------------- /src/components/app-list/no-add-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/components/app-list/no-add-list.vue -------------------------------------------------------------------------------- /src/components/app-list/pages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/components/app-list/pages.vue -------------------------------------------------------------------------------- /src/components/nav/nav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/components/nav/nav.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/src/router.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.dll.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stevenzwzhai/vue2.0-elementUI-axios-vueRouter/HEAD/webpack.dll.config.js --------------------------------------------------------------------------------