Can Vue2 components be used in Vue3
问题 I've currently got a library of Vue2 components I've created and use in several projects via a private npm repo. I'm starting a new project now in Vue3 but I'd like to use the old components if possible. Can I mix versions like that? Also, can components be mixed the opposite way (Vue3 components in Vue2 apps)? 回答1: Vue2 components can be used with Vue3 and Vue3 components can be used in Vue2. HOWEVER... As long as you use Classic Vue Js class-based API you should have no issues. Even though