Components
v-button
slots
default
props
disabledBoolean (optional)default: falsetypeString (optional)default: 'button'
computed properties
componentdependencies:
$attrs,$attrs
v-card
slots
headerUse this slot to for the card headerbodyUse this slot to for the card body, which is the middle areafooterUse this slot to for the card footer
checkbox
A simple checkbox component
- author - Sébastien
- license - MIT
- input
slots
defaultlabelUse this slot to set the checkbox label
props
modelArray (required)The checkbox model
disabledBoolean (optional)Initial checkbox state
enabledBoolean (optional)default: trueInitial checkbox value
labelString (optional)default: 'Unamed checkbox'The checkbox label
objectObject (optional)default: nullbool-falseBoolean (optional)default: false
data
initialValueThe initial component value. Used to detect changes and restore the initial value.
initial value:''
currentValue
initial value:''
computed properties
idThe component identifier. Generated using the
initialValuedata.dependencies:
initialValuechangeddependencies:
currentValue,initialValuewithNoDependencies
events
loadedEmitted when the component has been loaded
enabledEmitted the event
enabledwhen loaded Multilign
methods
check()Check if the input is checked
prop()dynamic()Make component dynamic
dynamic2()Enter to dynamic mode
enable(value)Enable the checkbox
v-icon
v-input
The custom HTML <input> component.
props
typeString (optional)default: 'text'v-modelString|Number (optional)Use this directive to create two-way data bindings with the component. It automatically picks the correct way to update the element based on the input type.
labelString (optional)default: ''Provide a label
computed properties
listenersResponsible for emitting all events from an inner element to the parent. The input method ensures that v-model works with the parent.
dependencies:
$listeners,$emit
methods
setFocus()Sets focus on input. Can be called programatically by setting an a ref and then calling this method Ex: `<v-button
v-menu-button
slots
default
props
checkedBoolean (optional)default: false
computed properties
menuIsActivedependencies:
checked
v-textarea
The custom HTML <textarea> component.
- author - Sébastien
- license - MIT
slots
labelUse this slot to set the label
props
v-modelString (optional)Use this directive to create two-way data bindings with the component. It automatically picks the correct way to update the element based on the input type.
idString (required)Defines a unique identifier (ID) which must be unique in the whole document.
disableBoolean (optional)default: falseThis Boolean property indicates that the user cannot interact with the control.
events
inputFired when the value is changed.
arguments:
valuestring - The updated value
keyupFired when a key is released.
methods
isEmpty()Define if the control value is empty of not.
return value:
- boolean - true if empty; otherwise false