question String (optional) default: 'Default Question'A basic card component that offers 2 slots to use:
<v-card heading="Card Header">
<div slot="body">Card Body<p>Some content for the body you your card</p></div>
<div slot="footer">Card Footer</div>
</v-card>
body @slot Use this slot to for the card body, which is the middle area
footer @slot Use this slot to for the card footer
heading String (optional)
The text for the heading
A simple checkbox component NEW FOR VUEDOC.MD
<checkbox v-model="value"/>
label @slot Use this slot to set the checkbox labelmodel Array (required)
The checkbox model
disabled Boolean (optional)
Initial checkbox state
enabled Boolean (optional) default: true
Initial checkbox value
label String (optional) default: 'Unamed checkbox'
The checkbox label
object Object (optional) default: null
bool-false Boolean (optional) default: false
prop-with-default-as-keyword-but-without-default Object (optional) default: {}
prop-with-default-as-keyword Object (optional) default: {}
prop-with-empty-default-as-keyword Object (optional) default: [object Object]
number-prop-with-default-as-keyword Number (optional) default: 0
string-prop-with-default-as-keyword String (optional) default: ''
boolean-prop-with-default-as-keyword Boolean (optional) default: false
array-prop-with-default-as-keyword Array (optional) default: empty array
function-prop-with-default-as-keyword Function (optional) default: identity function
prop-with-null-as-default-keyword Object (optional) default: null
prop-with-undefined-as-default-keyword Object (optional) default: undefined
initialValue
The initial component value. Used to detect changes and restore the initial value.
initial value: ''
currentValueinitial value: ''
id
The component identifier.
Generated using the initialValue data.
dependencies: initialValue
changed
dependencies: currentValue, initialValue
withNoDependencies
loaded
Emitted when the component has been loaded
enabled
Emitted the event enabled when loaded
Multilign
check()
Check if the input is checked
prop()
dynamic()
Make component dynamic
dynamic2()
Enter to dynamic mode
enable(value)
Enable the checkbox
Description Extended component from VBaseComp
placeholder String (optional)This is an example of creating a reusable grid component and using it with external data.
header @slot Use this slot header
footer @slot Use this slot footer
msg String|Number (optional) default: 'text'
object/array defaults should be returned from a factory function
data Array (optional)
describe data
images Array (optional) default: [object Object]
prop-func [object Object] (optional) default: [object Object]
prop function
columns ArrayExpression (optional)
get columns list
filter-key String (optional) default: 'example'
filter key
sortKeyinitial value: ''
sortOrdersinitial value: 'sortOrders'
filteredData
dependencies: sortKey, filterKey, filterKey, sortOrders, data
success
Success event.
error
Error event.
sortBy(key)
Sets the order
parameters:
key string - Key to orderreturn value:
hiddenMethod()
The custom HTML <textarea> component.
<v-textarea id="text" label="Text"/>
slotTestlabel String (optional)
v-model String (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.
id String (required)
Defines a unique identifier (ID) which must be unique in the whole document.
disable Boolean (optional) default: false
This Boolean property indicates that the user cannot interact with the control.
input
Fired when the value is changed.
arguments:
value string - The updated valuekeyup
Fired when a key is released.
isEmpty()
Define if the control value is empty of not.
return value:
A header component
<my-header>
Some Important Heading
<h2 slot="subheading">Subheading Slot</h2>
</my-header>
default
subheading @slot Use this slot to set the subheading
mixin-prop1 String (optional)
A prop from mixinA
created
Emitted when the component has been created
hello()