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

@@ -31,13 +31,13 @@ export const useAppStore = defineStore('app', {
this.loaderHide()
},
loaderSetTimer (timerVal) {
this._timer = timerVal
this.loader._timer = timerVal
},
loaderPause () {
clearInterval(this.loader._timer)
},
loaderHide () {
clearInterval(this.loader._timer)
this.loaderPause()
this.loader._timer = null
setTimeout(() => {
this.loader.show = false
@@ -68,4 +68,4 @@ export const useAppStore = defineStore('app', {
}, 100))
}
}
})
})