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

@@ -53,7 +53,8 @@ export interface RadioGroupSlots<T> {
import { computed } from 'vue'
import { RadioGroupRoot, RadioGroupItem, RadioGroupIndicator, Label, useForwardPropsEmits } from 'radix-vue'
import { reactivePick } from '@vueuse/core'
import { useId, useFormField } from '#imports'
import { useId } from '#imports'
import { useFormField } from '../composables/useFormField'
const props = withDefaults(defineProps<RadioGroupProps<T>>(), {
orientation: 'vertical'