<template>
<form class="form" novalidate v-on:submit="submit($event)">
<zoo-select>
<select id="select-id1" formControlName="select" slot="select" required>
<option disabled selected value="">Please select a value</option>
<option
v-for="option in options"
v-bind:key="option.id"
:value="option.id"
>
{{ option.firstName }} {{ option.lastName }}
</option>
</select>
<label for="select-id1" slot="label">Name</label>
<span slot="error">Name is required</span>
</zoo-select>
<zoo-input>
<input id="input-id1" type="date" slot="input" required/>
<label for="input-id1" slot="label">Input date field</label>
<span slot="info">Information text</span>
<span slot="error">Invalid value</span>
</zoo-input>
<zoo-button>
<button type="submit">Submit</button>
</zoo-button>
</form>
</template>