feat(examples): add pinia example to vite-examples

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2023-04-26 10:15:39 +02:00
committed by Braks
parent 53884a941e
commit 18aeefb069
6 changed files with 147 additions and 3 deletions
+2
View File
@@ -1,5 +1,6 @@
import { createApp } from 'vue'
import './index.css'
import { createPinia } from 'pinia'
import App from './App.vue'
import { router } from './router'
@@ -7,4 +8,5 @@ const app = createApp(App)
app.config.performance = true
app.use(router)
app.use(createPinia())
app.mount('#root')