2022-09-12 07:13:52 +00:00
|
|
|
const StepsProps = [
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
default: 'null',
|
|
|
|
description: 'Unique identifier of the element.'
|
2022-09-12 07:13:52 +00:00
|
|
|
},
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'model',
|
|
|
|
type: 'array',
|
|
|
|
default: 'null',
|
|
|
|
description: 'An array of menuitems.'
|
2022-09-12 07:13:52 +00:00
|
|
|
},
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'readonly',
|
|
|
|
type: 'boolean',
|
|
|
|
default: 'true',
|
|
|
|
description: 'Whether the items are clickable or not.'
|
2022-09-12 07:13:52 +00:00
|
|
|
},
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'exact',
|
|
|
|
type: 'boolean',
|
|
|
|
default: 'true',
|
2022-09-12 07:13:52 +00:00
|
|
|
description: "Whether to apply 'router-link-active-exact' class if route exactly matches the item path."
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
const StepsSlots = [
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'item',
|
|
|
|
description: 'Template of a menuitem.'
|
2022-09-12 07:13:52 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
steps: {
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'steps',
|
|
|
|
description: 'Steps components is an indicator for the steps in a wizard workflow.',
|
2022-09-12 07:13:52 +00:00
|
|
|
props: StepsProps,
|
|
|
|
slots: StepsSlots
|
|
|
|
}
|
|
|
|
};
|