import {createApp} from "vue" import App from "./components/app.vue" import "./main.css" const app = createApp(App).mount("#app")