-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Migration] Are there any plan to support Vue3? #235
Comments
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! |
Hello, Is there any way to make it work on Quasar 2? Thanks, |
Hello, |
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.The text was updated successfully, but these errors were encountered: