This commit is contained in:
dap
2025-02-25 09:22:24 +08:00
34 changed files with 1105 additions and 170 deletions

View File

@@ -131,7 +131,13 @@ async function initComponentAdapter() {
IconPicker: (props, { attrs, slots }) => {
return h(
IconPicker,
{ iconSlot: 'addonAfter', inputComponent: Input, ...props, ...attrs },
{
iconSlot: 'addonAfter',
inputComponent: Input,
modelValueProp: 'value',
...props,
...attrs,
},
slots,
);
},