-
Notifications
You must be signed in to change notification settings - Fork 91
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
[Feature Request] make Vuetify-loader compatible with Vue 2.7 #240
Comments
@KaelWD I tried the 1.8.0 release but I think it requires more work, getting an error: /app/node_modules/vuetify-loader/lib/loader.js:119
const component = compiler.parseComponent(file)
^
TypeError: compiler.parseComponent is not a function
at module.exports (/app/node_modules/vuetify-loader/lib/loader.js:119:32)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5) looking at the source code from vue/compiler-sfc , It doesn't seem like it actually exports parseComponent Edit: the parseComponent function definitely exists so that might be an oversight? |
compiler.compile() is also not an available function, which would be the next problem. |
Ugh, I thought it was just an alias like vue/server-renderer |
Vuetify-loader directly depends on
vue-template-compiler
which won't be required when using 2.7 and vue-loader 15.10.@vue/cli
already made compatibility changes in their v5.0.6 release but I assume there is more work needed in the Vuetify-loader...Thoughts @KaelWD ?
The text was updated successfully, but these errors were encountered: