@fy-/fws-vue 2.2.89 → 2.2.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -134,7 +134,12 @@ onUnmounted(() => {
|
|
|
134
134
|
</h3>
|
|
135
135
|
</div>
|
|
136
136
|
|
|
137
|
-
<div
|
|
137
|
+
<div
|
|
138
|
+
class="grid grid-cols-1 md:grid-cols-2 gap-4 gap-y-2" :class="[
|
|
139
|
+
css,
|
|
140
|
+
{ 'lg:grid-cols-3': data.length >= 3, 'lg:grid-cols-4': data.length >= 4 },
|
|
141
|
+
]"
|
|
142
|
+
>
|
|
138
143
|
<div v-for="(g, i) in data" :key="`index_${i}`" class="relative">
|
|
139
144
|
<template v-for="f in g" :key="f.uid">
|
|
140
145
|
<template v-if="!f.isHidden">
|
|
@@ -150,6 +155,7 @@ onUnmounted(() => {
|
|
|
150
155
|
:label="f.label"
|
|
151
156
|
:options="f.options ? f.options : [[]]"
|
|
152
157
|
:error-vuelidate="v$.formData[f.uid].$errors"
|
|
158
|
+
class="mb-2"
|
|
153
159
|
@focus="
|
|
154
160
|
() => {
|
|
155
161
|
f.focused = true;
|