VInputText
VInputText
is a component in Vunix that extends the HTML <input>
element with a type prop of text
. As an extension of VInputBase
, VInputText
inherits all the features of VInputBase
. To learn more about these features, check out the VInputBase documentation.
Basic Usage
To use VInputText
, simply include the component in your Vue template and provide the desired props. Here's an example:
<VInputText name="firstName" label="Firstname" placeholder="Type your firstName here"/>