ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
24 lines (23 loc) • 379 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getMotion = getMotion;
function getMotion(_ref) {
let {
prefixCls,
animation,
transitionName
} = _ref;
if (animation) {
return {
name: `${prefixCls}-${animation}`
};
}
if (transitionName) {
return {
name: transitionName
};
}
return {};
}
;