mirror of
https://github.com/Rushilwiz/todos.git
synced 2025-04-09 23:00:17 -04:00
15 lines
242 B
TypeScript
15 lines
242 B
TypeScript
import './assets/main.css'
|
|
|
|
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
|
|
const app = createApp(App)
|
|
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
|
|
app.mount('#app')
|