1
0
mirror of synced 2024-11-22 21:36:04 +03:00
vue-formulario/examples/specimens/SpecimenSelect.vue

15 lines
434 B
Vue

<template>
<div class="specimens specimens--text">
<h2>Select classification</h2>
<div class="specimen specimen--single">
<h3>Select</h3>
<FormulateInput
label="What planet is the hottest?"
type="select"
:options="{mercury: 'Mercury', venus: 'Venus', earth: 'Earth', mars: 'Mars'}"
help="Average temperature on the surface of the planet."
/>
</div>
</div>
</template>