Vue 3 better animation (#257)

* vue-3-better-animation

* Working on migration to vueuse/motion

* Form sidebar animations

* Clean code

* Added animations for modal

* Finished implementing better animations

---------

Co-authored-by: Forms Dev <chirag+new@notionforms.io>
This commit is contained in:
Julien Nahum
2023-12-08 19:21:04 +01:00
committed by GitHub
parent 24276f0b95
commit f970557b76
23 changed files with 1756 additions and 870 deletions

View File

@@ -1,5 +1,6 @@
import './axios'
import { registerLogEventOnApp } from './amplitude'
import { MotionPlugin } from '@vueuse/motion'
import './vapor'
import './sentry'
@@ -11,6 +12,7 @@ function registerPlugin (app) {
app.use(Notifications)
app.use(metaManager)
app.use(MotionPlugin)
registerLogEventOnApp(app)
return app
}