2021-05-12 09:35:29 +00:00
|
|
|
const ToolbarSlots = [
|
|
|
|
{
|
2021-12-01 08:16:47 +00:00
|
|
|
name: "start",
|
2021-05-12 09:35:29 +00:00
|
|
|
description: "Custom content for the component's left side"
|
|
|
|
},
|
|
|
|
{
|
2021-12-01 08:16:47 +00:00
|
|
|
name: "end",
|
2021-05-12 09:35:29 +00:00
|
|
|
description: "Custom content for the component's right side"
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
toolbar: {
|
|
|
|
name: "Toolbar",
|
|
|
|
description: "Toolbar is a grouping component for buttons and other content.",
|
|
|
|
slots: ToolbarSlots
|
|
|
|
}
|
|
|
|
};
|