1
0
mirror of synced 2024-11-26 23:36:02 +03:00
vue-formulario/examples/specimens/SpecimenGroup.vue
2020-04-18 23:57:43 -04:00

37 lines
703 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
v-model="groupValue"
label="Invite some new users"
type="group"
placeholder="users"
help="Fields can be grouped"
>
<FormulateInput
label="First and last name"
name="Name"
type="text"
placeholder="Users name"
/>
<FormulateInput
name="Email"
label="Email address"
type="email"
placeholder="Users email"
validation="required|email"
/>
</FormulateInput>
{{ groupValue }}
</div>
</template>
<script>
export default {
data () {
return {
groupValue: null
}
}
}
</script>