└── app ├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── package-lock.json ├── package.json ├── public ├── favicon.ico └── index.html └── src ├── App.vue ├── components └── DropZone.vue ├── main.js ├── router └── index.js └── views └── Home.vue /app/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/.eslintrc.js -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/README.md -------------------------------------------------------------------------------- /app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/babel.config.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/package.json -------------------------------------------------------------------------------- /app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/public/favicon.ico -------------------------------------------------------------------------------- /app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/public/index.html -------------------------------------------------------------------------------- /app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/src/App.vue -------------------------------------------------------------------------------- /app/src/components/DropZone.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/src/components/DropZone.vue -------------------------------------------------------------------------------- /app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/src/main.js -------------------------------------------------------------------------------- /app/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/src/router/index.js -------------------------------------------------------------------------------- /app/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkomarnicki/vue-3-dropzone/HEAD/app/src/views/Home.vue --------------------------------------------------------------------------------