mirror of
https://github.com/Floriansylvain/templates_vuejs.git
synced 2026-08-19 19:53:20 +02:00
Inital commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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")
|
||||
Reference in New Issue
Block a user