import { createApp } from "vue"; import Login from "./LoginPage.vue"; const app = createApp(Login); app.mount("#app");