I know there are a lot of threads covering Vue 2 support for IE11, which I know works fine with polyfills. But is it possible to use Vue 3 in IE11? If not, is it planned to be supported?
I tried using Vue CLI @vue/cli 4.5.8, which currently installs vue@3.0.2 (along with Vuex, Router and Typescript support). After using transpileDependencies: ['vue-router'] in my vue.config.js I managed to get it working in Edge. IE11 kept complaining about the "vue" npm package. After transpiling it too I got Accessing the 'caller' property of a function or arguments object is not allowed in strict mode which I'm currently stuck with.
I've also tried babel polyfills and the other techniques mentioned for vue 2 without success.