quasar
Version:
Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time
52 lines (45 loc) • 1.13 kB
JSON
{
"behavior": {
"$listeners": true
},
"props": {
"value": {
"type": "Boolean",
"desc": "Model of the component defining if it is shown or hidden to the user; Either use this property (along with a listener for 'input' event) OR use v-model directive",
"default": true,
"examples": [
"v-model=\"footerState\""
],
"category": "model"
},
"reveal": {
"type": "Boolean",
"desc": "Enable 'reveal' mode; Takes into account user scroll to temporarily show/hide footer",
"category": "behavior"
},
"bordered": {
"extends": "bordered"
},
"elevated": {
"type": "Boolean",
"desc": "Adds a default shadow to the footer",
"category": "style"
}
},
"slots": {
"default": {
"desc": "Default slot in the devland unslotted content of the component; Suggestion: QToolbar"
}
},
"events": {
"reveal": {
"desc": "Emitted when 'reveal' state gets changed",
"params": {
"value": {
"type": "Boolean",
"desc": "New 'reveal' state"
}
}
}
}
}