import './index.less' import type { FunctionalComponent } from 'vue' import type { VueNode } from '../../../types' export type ProCardActionsProps = { /** * 自定义前缀 * * @ignore */ prefixCls?: string /** 操作按钮 */ actions?: VueNode } const ProCardActions: FunctionalComponent = props => { const { actions, prefixCls } = props if (Array.isArray(actions) && actions?.length) { return ( ) } if (actions) return return null } export default ProCardActions