Component names: 
 <v-form><v-input><v-select><v-checkbox><v-radio> Examples   Basic  
     Textarea eksempel  
 Dropdown eksempel  Valgmulighed 1  Valgmulighed 2  Valgmulighed 3  Valgmulighed 4  Valgmulighed 5  < divclass = " app" > < v-form> < v-inputclass = " mb-5" placeholder = " Navn" > </ v-input> < v-inputclass = " mb-5" placeholder = " E-mail" > </ v-input> < v-textareaclass = " mb-5" placeholder = " Textarea eksempel" > </ v-textarea> < v-selectclass = " mb-5" placeholder = " Dropdown eksempel" > < v-option> </ v-option> < v-option> </ v-option> < v-option> </ v-option> < v-option> </ v-option> < v-option> </ v-option> </ v-select> < divclass = " mb-5" > < v-checkboxclass = " mb-3" placeholder = " Checkbox eksempel" checked > </ v-checkbox> < v-checkboxclass = " mb-3" placeholder = " Checkbox eksempel" > </ v-checkbox> < v-checkboxplaceholder = " Checkbox eksempel" checked  disabled > </ v-checkbox> </ div> < divclass = " mb-5" > < v-radioname = " radio" class = " mb-3" placeholder = " Radio eksempel" > </ v-radio> < v-radioname = " radio" class = " mb-3" placeholder = " Radio eksempel" > </ v-radio> < v-radioname = " radio" placeholder = " Radio eksempel" disabled  checked > </ v-radio> </ div> </ v-form> </ div> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 
 Errors and helper texts  
  < divclass = " app" > < v-form> < v-inputclass = " mb-5" placeholder = " Field with description" description = " Lorem ipsum dolor sit amet, consectetur adipiscing elit." > </ v-input> < v-inputplaceholder = " Field with error" value = " Consectetur adipiscing" error = " Lorem ipsum dolor sit amet" > </ v-input> </ v-form> </ div> 1 2 3 4 5 6 
  State management  
    {
  "name": "John Doe",
  "permission": true,
  "gender": "male"
}   < divclass = " app" > < v-datav-slot = " state" :data = " { name: 'John Doe', permission: true, gender: 'male' }" > < v-form> < v-inputclass = " mb-5" placeholder = " Enter name" :value = " state.name" @input = " state.name = $event.target.value" > </ v-input> < v-checkboxclass = " mb-5" placeholder = " Permission" :checked = " state.permission === true" @input = " state.permission = $event.target.checked" > </ v-checkbox> < divclass = " mb-5" > < v-radioclass = " mb-3" placeholder = " Male" :checked = " state.gender === 'male'" @input = " state.gender = 'male'" > </ v-radio> < v-radioplaceholder = " Female" :checked = " state.gender === 'female'" @input = " state.gender = 'female'" > </ v-radio> </ div> < pre style  =" color :  #fff; " > </ pre> < v-cardclass = " mt-5" > < divv-if = " state.gender === 'male'" > </ div> < divv-if = " state.gender === 'female'" > </ div> </ v-card> </ v-form> </ v-data> </ div> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 
 API  Name  Type  Description  Default placeholder  String  Label that describes the form element  - description  String  Helper text  - error  String  Error message  - 
Notice
 All other properties that are not defined above, will be passed to the component as html attributes. This is especially useful for adding the class attribute.