UNPKG

quasar

Version:

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

106 lines 2.53 kB
{ "type": "component", "props": { "value": { "desc": "Model of the component; Either use this property (along with a listener for 'input' event) OR use v-model directive", "category": "model", "type": [ "Number", "String" ], "required": true, "examples": [ "v-model=\"option\"" ] }, "val": { "type": [ "Number", "String" ], "required": true, "desc": "The actual value of the option with which model value is changed", "examples": [ "opt1", 50 ], "category": "model" }, "label": { "type": "String", "desc": "Label to display along the radio control (or use the default slot instead of this prop)", "examples": [ "label=\"Option 1\"" ], "category": "label" }, "left-label": { "type": "Boolean", "desc": "Label (if any specified) should be displayed on the left side of the checkbox", "category": "label" }, "color": { "type": "String", "desc": "Color name for component from the Quasar Color Palette", "examples": [ "primary", "teal-10" ], "category": "style" }, "keep-color": { "type": "Boolean", "desc": "Should the color (if specified any) be kept when checkbox is unticked?", "category": "behavior" }, "dark": { "type": "Boolean", "desc": "Notify the component that the background is a dark color", "category": "style" }, "dense": { "type": "Boolean", "desc": "Dense mode; occupies less space", "category": "style" }, "disable": { "type": "Boolean", "desc": "Put component in disabled mode", "category": "state" }, "tabindex": { "type": [ "Number", "String" ], "desc": "Tabindex HTML attribute value", "examples": [ "0", "100" ], "category": "general" } }, "slots": { "default": { "desc": "Default slot can be used as label, unless 'label' prop is specified; Suggestion: string" } }, "events": { "input": { "desc": "Emitted when component's model changes; Is also used by v-model", "params": { "value": { "type": "Any", "desc": "New model value", "required": true } } } }, "methods": { "set": { "desc": "Sets the Radio's v-model to equal the val" } } }