web/src/main.ts
bon 8ae956dee8
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled
init (pfp and unformatted text)
2025-05-17 02:15:57 +03:00

19 lines
353 B
TypeScript

import "./assets/main.css"
import { createApp } from "vue"
import { createRouter, createWebHistory } from "vue-router"
import uiPlugin from "@nuxt/ui/vue-plugin"
import App from "./App.vue"
const app = createApp(App)
const router = createRouter({
routes: [],
history: createWebHistory(),
})
app.use(uiPlugin)
app.use(router)
app.mount("#app")