//引入create用于创建应用 import {createApp, createSSRApp} from "vue"; //引入App根组件 import app from "./App.vue"; createApp(app).mount("#app")