2024-08-02 18:19:39 +08:00

7 lines
213 B
TypeScript

import type { VNodeChild } from 'vue';
import type { SelectOption } from '../../../select/src/interface';
export type RenderTag = (props: {
option: SelectOption;
handleClose: () => void;
}) => VNodeChild;