Open vanoneang opened 4 years ago
We are also waiting. Any progress?
I managed to get it working with the Vue Migration Build.
import CroppaPlugin from 'vue-croppa'
const Croppa = CroppaPlugin.component
Croppa.compatConfig = { MODE: 2 }
The remaining app is configured to Vue3 mode:
// webpack.config.js
module.exports = {
resolve: {
alias: {
vue: '@vue/compat'
}
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
compilerOptions: {
compatConfig: {
MODE: 3
}
}
}
}
]
}
}
Some warnings are showing, but it works!
I managed to get it working with the Vue Migration Build.
import CroppaPlugin from 'vue-croppa' const Croppa = CroppaPlugin.component Croppa.compatConfig = { MODE: 2 }
The remaining app is configured to Vue3 mode:
// webpack.config.js module.exports = { resolve: { alias: { vue: '@vue/compat' } }, module: { rules: [ { test: /\.vue$/, loader: 'vue-loader', options: { compilerOptions: { compatConfig: { MODE: 3 } } } } ] } }
Some warning are showing, but it works!
Hello,
Is there any way to make it work on Quasar 2?
Thanks,
Hello, Can we expect a version for Vue3?
Hello, Can we expect a version for Vue3?
I was checking the project status, last release was in August 2018, right now has ~90 open issues oldest open issue from around the same year 2018, we are approaching 2024 so roughly 6 years with no updates, yeah I would say this project is dead
I am looking forward to continuing to use
vue-croppa
in Vue3 projects.