Lint
This commit is contained in:
parent
8ae4a4639c
commit
c34d79caef
|
@ -1,19 +1,13 @@
|
||||||
<template>
|
<template>
|
||||||
<label class="w-full border border-solid border-gray-500 focus-within:border-primary rounded-lg relative flex">
|
<label class="w-full border border-solid border-gray-500 focus-within:border-primary rounded-lg relative flex">
|
||||||
<input
|
<input :id="innerId" v-model="inner" :name="field.key" type="text" placeholder=""
|
||||||
:id="innerId"
|
class="bg-white rounded-lg focus:outline-none text-gray-600 text-left py-1 px-2 @sm:py-2 text-sm @sm:text-base @sm:px-3 w-full" />
|
||||||
v-model="inner"
|
|
||||||
:name="field.key"
|
|
||||||
type="text"
|
|
||||||
placeholder=""
|
|
||||||
class="bg-white rounded-lg focus:outline-none text-gray-600 text-left py-1 px-2 @sm:py-2 text-sm @sm:text-base @sm:px-3 w-full"
|
|
||||||
/>
|
|
||||||
<field-label :name="field.name" :required="field.required"></field-label>
|
<field-label :name="field.name" :required="field.required"></field-label>
|
||||||
</label>
|
</label>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import {computed} from 'vue';
|
import { computed } from 'vue';
|
||||||
import FieldLabel from '../FieldLabel.vue';
|
import FieldLabel from '../FieldLabel.vue';
|
||||||
|
|
||||||
const emit = defineEmits(['update:modelValue']);
|
const emit = defineEmits(['update:modelValue']);
|
||||||
|
|
Loading…
Reference in New Issue