Fixed #1244 - Templating for Menus

This commit is contained in:
Cagatay Civici 2021-05-17 14:58:53 +03:00
parent eb32efc9e1
commit d7c01c8f6e
33 changed files with 482 additions and 121 deletions

View file

@ -19,10 +19,18 @@ const StepsProps = [
}
];
const StepsSlots = [
{
name: "item",
description: "Template of a menuitem."
}
];
module.exports = {
steps: {
name: "steps",
description: "Steps components is an indicator for the steps in a wizard workflow.",
props: StepsProps
props: StepsProps,
slots: StepsSlots
}
};