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