Pages route change - api generator added

This commit is contained in:
Bahadir Sofuoglu 2022-09-12 10:13:52 +03:00
parent 28b8e0a7e0
commit 3eac7d6658
179 changed files with 10592 additions and 5 deletions

View file

@ -0,0 +1,34 @@
const TooltipModifiers = [
{
name: "right",
description: "Positions the tooltip on the right of the trigger element (default)"
},
{
name: "top",
description: "Positions the tooltip on the top of the trigger element"
},
{
name: "bottom",
description: "Positions the tooltip on the bottom of the trigger element"
},
{
name: "left",
description: "Positions the tooltip on the left of the trigger element"
},
{
name: "focus",
description: "Focus on the trigger element"
},
{
name: "blur",
description: "Blur the trigger element"
}
];
module.exports = {
tooltip: {
name: "Tooltip",
description: "Tooltip directive provides advisory information for a component.",
"vue-modifiers": TooltipModifiers
}
};