fix(module): use relative imports to components / composables

This commit is contained in:
Benjamin Canac
2024-07-25 17:00:57 +02:00
parent 8bac288687
commit 42f4f8d337
35 changed files with 116 additions and 44 deletions

View File

@@ -38,7 +38,8 @@ export interface FormFieldSlots {
<script lang="ts" setup>
import { computed, ref, inject, provide, type Ref } from 'vue'
import { Label } from 'radix-vue'
import { useId, formFieldInjectionKey } from '#imports'
import { useId } from '#imports'
import { formFieldInjectionKey } from '../composables/useFormField'
import type { FormError } from '../types/form'
const props = defineProps<FormFieldProps>()