update(examples): remove pinia

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-12-04 15:42:18 +01:00
parent 55122ed187
commit 0816bf0c75
2 changed files with 9 additions and 11 deletions
-2
View File
@@ -1,6 +1,5 @@
import { createApp } from 'vue'
import './index.css'
import { createPinia } from 'pinia'
import { DraggablePlugin } from '@braks/revue-draggable'
import App from './App.vue'
import { router } from './router'
@@ -10,5 +9,4 @@ const app = createApp(App)
app.config.performance = true
app.use(router)
app.use(DraggablePlugin)
app.use(createPinia())
app.mount('#root')