1
0
mirror of synced 2024-11-22 05:16:05 +03:00

Adds wrappers around box inputs

This commit is contained in:
Justin Schroeder 2018-05-18 23:47:14 -04:00
parent 1c0980b1e8
commit 73ae9db111
2 changed files with 8 additions and 4 deletions

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

View File

@ -70,10 +70,14 @@
</select>
<!-- BOX INPUTS -->
<div
class="formulate-element-box-input-group"
class="formulate-element-box-input-wrap"
v-if="isBoxInput"
>
<template v-for="option in optionList">
<div
class="formulate-element-box-input-group"
v-for="option in optionList"
:key="option.id"
>
<input
type="radio"
:class="elementClasses"
@ -105,7 +109,7 @@
:key="`${option.id}-label`"
v-text="option.label"
/>
</template>
</div>
</div>
<!-- CUSTOM SLOT INPUTS -->
<slot v-if="hasCustomInput" />