import { createApp } from "vue"; import AppMain from "./AppMain.vue"; const main = createApp(AppMain); main.mount("#root");