1
0
mirror of synced 2024-11-23 05:46:05 +03:00
vue-formulario/examples/specimens/SpecimenGroup.vue
2020-04-16 09:22:58 -04:00

23 lines
492 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="specimens specimens--group">
<FormulateInput
label="Invite some new users"
type="group"
placeholder="users"
help="Fields can be grouped"
>
<FormulateInput
name="Name"
type="text"
placeholder="Users name"
/>
<FormulateInput
name="Email"
type="email"
placeholder="Users email"
validation="required|email"
/>
</FormulateInput>
</div>
</template>