I built a vue 3 application that gets delivered to the end user via an API that detects the useragent and serves the best fitting version. This works great, but when it comes to IE 11 vue 3 is known to not work there.
Now theres @vue/composition-api which is able to allow me porting all functionality to a lower level build.
My question is now:
How can i tell webpack to import stuff like reactive, ref, watch and so on from @vue/composition-api and other stuff directly from vue-2 when calling
// example
import {
createApp, // => vue
ref // => @vue-composition
} from 'vue';