Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into warmflow

This commit is contained in:
dap
2025-01-10 16:39:14 +08:00
3 changed files with 11 additions and 7 deletions

View File

@@ -4,7 +4,7 @@ import type { ZodTypeAny } from 'zod';
import type { Component, HtmlHTMLAttributes, Ref } from 'vue';
import type { VbenButtonProps } from '@vben-core/shadcn-ui';
import type { ClassType, Nullable } from '@vben-core/typings';
import type { ClassType, MaybeComputedRef, Nullable } from '@vben-core/typings';
import type { FormApi } from './form-api';
@@ -316,7 +316,7 @@ export interface FormRenderProps<
export interface ActionButtonOptions extends VbenButtonProps {
[key: string]: any;
content?: string;
content?: MaybeComputedRef<string>;
show?: boolean;
}