When using Vue 3 and the new createApp Chrome does not recognize it. In my main.js I have:
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')
I tested with a newly generated vue-cli app and it does not work.
The Chrome Vue devtools does not recognize any localhost app and typing Vue in the console inside a Vue app says this: Uncaught ReferenceError: Vue is not defined at <anonymous>:1:1