createApp(App).mount('#app') is effectively the same as: import Vue from 'vue' const app = Vue.createApp(App) app.mount('#app') // or import ...
確定! 回上一頁