mirror of
https://github.com/mmahdium/TBW.git
synced 2026-08-14 16:22:48 +03:30
18 lines
372 B
TypeScript
18 lines
372 B
TypeScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import { autoAnimatePlugin } from '@formkit/auto-animate/vue'
|
|
import { MotionPlugin } from '@vueuse/motion'
|
|
|
|
const app = createApp(App)
|
|
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
|
|
app.use(autoAnimatePlugin)
|
|
app.use(MotionPlugin)
|
|
|
|
app.mount('#app')
|