init (pfp and unformatted text)
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled
This commit is contained in:
commit
8ae956dee8
19 changed files with 10759 additions and 0 deletions
19
src/main.ts
Normal file
19
src/main.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
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")
|
Loading…
Add table
Add a link
Reference in a new issue