{{ JSON.stringify({ slotProps }, null, 2) }}
+ & string> = {
label?: string;
- path: Paths & string> = {
+ value: Get & string> = SlotsType<{
+ default: SafeNFormItemSlotScope ;
}>;
- const SafeNFormItem = defineComponent<
- SafeNFormItemProps,
+ type SafeNFormItemSlotFns & string> = {
+ default?: (scope: SafeNFormItemSlotScope ) => any;
+ };
+
+ type SafeNFormItemComponent = new & string>(
+ props: SafeNFormItemProps ,
+ ) => {
+ $props: SafeNFormItemProps ;
+ $slots: SafeNFormItemSlotFns ;
+ };
+
+ const SafeNFormItemImpl = defineComponent<
+ SafeNFormItemProps