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

@@ -44,7 +44,7 @@ export interface TextareaSlots {
<script lang="ts" setup>
import { ref, computed, onMounted, nextTick, watch } from 'vue'
import { useFormField } from '#imports'
import { useFormField } from '../composables/useFormField'
import { looseToNumber } from '../utils'
defineOptions({ inheritAttrs: false })