vue3 remove logs

This commit is contained in:
chakir qatab 2023-01-12 15:32:47 +04:00
parent 8392cd3823
commit ea751c23f8

View File

@ -163,7 +163,6 @@ export function generateSource(
const slotProps = Object.entries(argTypes).filter(
([arg]) => argTypes[arg]?.table?.category === 'slots'
);
console.log('slotProps ', slotProps);
if (slotArgs && slotArgs.length > 0) {
const namedSlotContents = createNamedSlots(slotArgs, slotProps, byRef);
return `<${name} ${props}>\n${namedSlotContents}\n</${name}>`;