'Wizard edited for spa'

This commit is contained in:
Burak Civan
2021-05-20 15:18:43 +03:00
parent cdfe846d4b
commit 79f91eab7f
25 changed files with 1849 additions and 524 deletions

View File

@ -3,7 +3,7 @@
<label :for="name" class="form-control-label">{{ text }}</label>
<div class="tab-pane tab-example-result fade show active" role="tabpanel" aria-labelledby="-component-tab">
<div class="btn-group btn-group-toggle" data-toggle="buttons" v-on:click="onClick">
<div class="btn-group btn-group-toggle radio-yes-no" data-toggle="buttons" v-on:click="onClick">
<label class="btn btn-success"
:class="[{'active': value === 1}]">
<input type="radio"
@ -70,7 +70,7 @@ export default {
},
onClick(evt) {
let val = evt.target.control.value;
this.value= val;
this.real_value = val;
this.$emit("change", val);
},