├── .babelrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── renders ├── 1.jpg └── 2.jpg ├── src ├── App.vue ├── common │ ├── css │ │ └── base.css │ └── imgs │ │ └── loading.gif ├── components │ ├── comments.vue │ ├── down.vue │ ├── dropload.vue │ ├── footer.vue │ ├── header.vue │ ├── modal.vue │ ├── news.vue │ └── slider.vue └── main.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/package.json -------------------------------------------------------------------------------- /renders/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/renders/1.jpg -------------------------------------------------------------------------------- /renders/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/renders/2.jpg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/common/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/src/common/css/base.css -------------------------------------------------------------------------------- /src/common/imgs/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/src/common/imgs/loading.gif -------------------------------------------------------------------------------- /src/components/comments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/src/components/comments.vue -------------------------------------------------------------------------------- /src/components/down.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/src/components/down.vue -------------------------------------------------------------------------------- /src/components/dropload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/src/components/dropload.vue -------------------------------------------------------------------------------- /src/components/footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/src/components/footer.vue -------------------------------------------------------------------------------- /src/components/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/src/components/header.vue -------------------------------------------------------------------------------- /src/components/modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/src/components/modal.vue -------------------------------------------------------------------------------- /src/components/news.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/src/components/news.vue -------------------------------------------------------------------------------- /src/components/slider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/src/components/slider.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/src/main.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITCNZ/vue-dropload/HEAD/webpack.config.js --------------------------------------------------------------------------------