form#foo(@submit.prevent="handleSubmit") label(v-for="item of price") input(type="radio", name="price", :value="item.value", v-model="formData.price") div(v-text="`${item.value}$`") button SUBMIT div.modal(v-if="isDone") div(v-text="`You have been spent ${formData.price}$!`") hr button(@click="handleCloseModal") OK