UNPKG

quasar

Version:

Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time

76 lines (63 loc) 1.74 kB
{ "mixins": [ "mixins/model-toggle", "mixins/fab" ], "props": { "value": { "desc": "Controls state of fab actions (showing/hidden); Works best with v-model directive, otherwise use along listening to 'input' event", "category": "model" }, "icon": { "extends": "icon" }, "active-icon": { "extends": "icon" }, "hide-icon": { "type": "Boolean", "desc": "Hide the icon (don't use any)", "category": "style|content", "addedIn": "v1.9.14" }, "direction": { "type": "String", "desc": "Direction to expand Fab Actions to", "default": "right", "values": [ "up", "right", "down", "left" ], "examples": [ "down" ], "category": "behavior" }, "vertical-actions-align": { "type": "String", "desc": "The side of the Fab where Fab Actions will expand (only when direction is 'up' or 'down')", "default": "center", "values": [ "left", "center", "right" ], "category": "style|content", "addedIn": "v1.9.0" }, "persistent": { "type": "Boolean", "desc": "By default, Fab Actions are hidden when user navigates to another route and this prop disables this behavior", "category": "behavior" } }, "slots": { "default": { "desc": "This is where QFabActions may go into" }, "tooltip": { "desc": "Slot specifically designed for a QTooltip" } }, "events": { "input": { "desc": "Emitted when fab actions are shown/hidden; Captured by v-model directive" } }, "methods": { "show": { "desc": "Expands fab actions list" }, "hide": { "desc": "Collapses fab actions list" } } }