17 lines
332 B
Vue
17 lines
332 B
Vue
<template>
|
|
<div class="specimens specimens--text">
|
|
<FormulateInput
|
|
label="Username"
|
|
type="text"
|
|
placeholder="Username"
|
|
help="Select a username"
|
|
/>
|
|
<FormulateInput
|
|
label="How old are you?"
|
|
type="number"
|
|
placeholder="25"
|
|
help="Select your age"
|
|
/>
|
|
</div>
|
|
</template>
|