mirror of
https://github.com/Floriansylvain/templates_vuejs.git
synced 2026-08-19 11:43:21 +02:00
15 lines
242 B
TypeScript
15 lines
242 B
TypeScript
import { createApp } from "vue"
|
|
import { createPinia } from "pinia"
|
|
|
|
import App from "./App.vue"
|
|
import router from "./router"
|
|
|
|
import "./assets/base.css"
|
|
|
|
const app = createApp(App)
|
|
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
|
|
app.mount("#app")
|