-
is Volar the new version for Vue development? do we still need to use vetur or change to volar? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
Evan You during the Vue Contributor Days a few days ago said that the quick start guide for Vue will now recommend Volar instead of Vetur. He said it here: https://youtu.be/gpTbH469Qog?t=1926 EDIT: ... and more recently here https://twitter.com/youyuxi/status/1458004347854356484 Relevant Vite PR created by vite & vue team member patak-js: vitejs/vite#4842 I interpret it like "If you're staying with Vue 2 OR if you don't use TypeScript that much - Vetur is still fine, but if you're going to be using Vue 3 or you use typescript extensively pick Volar, as this is the main tool that'll be used by the ecosystem going forward" The reason for my TypeScript interpretation is that Vetur doesn't have vue-tsc etc., so no type-checking in the template and so on |
Beta Was this translation helpful? Give feedback.
Evan You during the Vue Contributor Days a few days ago said that the quick start guide for Vue will now recommend Volar instead of Vetur. He said it here: https://youtu.be/gpTbH469Qog?t=1926
EDIT: ... and more recently here https://twitter.com/youyuxi/status/1458004347854356484
Relevant Vite PR created by vite & vue team member patak-js: vitejs/vite#4842
I interpret it like "If you're staying with Vue 2 OR if you don't use TypeScript that much - Vetur is still fine, but if you're going to be using Vue 3 or you use typescript extensively pick Volar, as this is the main tool that'll be used by the ecosystem going forward"
The reason for my TypeScript interpretation is that Vetur doesn't ha…