How to use vuetify with vue 3.x?
See original GitHub issueIn vue3 the compiler has been split up into compiler-sfc
, compiler-dom
and compiler-ssr
.
How can I use vuetify
with vue3?
Is there a branch/tag that isn’t published to NPM yet? The current next
head is a bit out of date, and all current versions seem to be incompatible with vue3 as they all require vue-template-compiler
v2.6.0
which isn’t existing anymore in the new ecosystem.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:5
- Comments:14 (3 by maintainers)
Top Results From Across the Web
How to connect Vue 3 with Vuetify? - Stack Overflow
import { createApp } from "vue"; import vuetify from "./plugins/vuetify"; import App from "./App"; const app = createApp(App); app.use(vuetify); ...
Read more >Get started with Vuetify 3
Details for v3 release - faq, changes, and upgrading. ... To get started with Vuetify 3, simply paste the following code into your...
Read more >Frequently Asked Questions - Vue.js
Vue 3 leverages modern JavaScript features and does not support IE11. ... Vue 3.x uses ES2015 features that cannot be polyfilled in legacy...
Read more >Create a Vue 3 / Vuetify 3 Alpha app - Part 1 - George Campbell
Create a Vue 3 / Vuetify 3 Alpha app - Part 1 · Pick a Development Platform · Install Prerequisites · Create the...
Read more >How to use Vuetify with Nuxt 3 - Cody Bontecou
We have Vuetify installed, now we need it to talk to Nuxt. We will do this by using Nuxt's plugin feature. Create a...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
vuetify is beeing rewriten with the compositionapi so you need to wait until vuetify 3 is released! Also this is not the correct repro for asking this!
Isn’t Vue 3 supposed to be mostly backwards-compatible? It would be really nice to be able to use Vuetify with Vue 3 somehow, even if it’s not very ergonomic yet