UNPKG

nutui-uniapp

Version:

京东风格的轻量级移动端 Uniapp、Vue3 组件库(支持小程序开发)

12 lines (9 loc) 302 B
import type { NutAnimationName } from '../transition' export type Position = 'center' | 'top' | 'bottom' | 'left' | 'right' export const animationName: Record<Position, NutAnimationName> = { center: 'fade', top: 'slide-down', bottom: 'slide-up', left: 'slide-left', right: 'slide-right', }