Files
vue-ts-example-2025/src/plugins/10.formkit-auto-animate.ts
严浩 063fb2641c
Some checks failed
CI/CD Pipeline / playwright (push) Successful in 2m6s
CI/CD Pipeline / build-and-deploy (push) Has been cancelled
refactor(router): 重命名路由插件文件并更新类型定义
2025-10-23 23:27:10 +08:00

6 lines
206 B
TypeScript

import { autoAnimatePlugin } from '@formkit/auto-animate/vue';
export function install({ app }: { app: import('vue').App<Element> }) {
app.use(autoAnimatePlugin); // v-auto-animate="{ duration: 100 }"
}