versions:
"babel-polyfill": "^6.26.0",
"vue": "^2.6.12",
"vue2-dropzone": "^3.6.0",
...
in Dropzone.vue
import {vue2Dropzone} from 'vue2-dropzone'
import 'vue2-dropzone/dist/vue2Dropzone.min.css'
....
My client wants to support ie11 so I must use vue@2.6.12.
I installed vue2-dropzone and set and then it worked.
it's working but printed that export 'vue2Dropzone' was not found in 'vue2-dropzone' on console.
What should I do about it?
I want to remove the error message only.....
versions: "babel-polyfill": "^6.26.0", "vue": "^2.6.12", "vue2-dropzone": "^3.6.0", ... in Dropzone.vue import {vue2Dropzone} from 'vue2-dropzone' import 'vue2-dropzone/dist/vue2Dropzone.min.css' ....
My client wants to support ie11 so I must use vue@2.6.12. I installed vue2-dropzone and set and then it worked. it's working but printed that export 'vue2Dropzone' was not found in 'vue2-dropzone' on console. What should I do about it? I want to remove the error message only.....