Removed Motion and added vueuse/motion

This commit is contained in:
Flycro
2022-01-09 15:06:40 +01:00
parent 7084242b45
commit 3eb6064166
5 changed files with 1328 additions and 1409 deletions

6
src/modules/motion.ts Normal file
View File

@@ -0,0 +1,6 @@
import { MotionPlugin } from '@vueuse/motion'
import type { UserModule } from '~/types'
export const install: UserModule = ({ app, isClient }) => {
isClient && app.use(MotionPlugin)
}