chore(components): improve imports

This commit is contained in:
Benjamin Canac
2024-03-29 16:59:24 +01:00
parent 10b56bb16c
commit b471547eb7
16 changed files with 29 additions and 40 deletions

View File

@@ -4,11 +4,7 @@ import type { DropdownMenuRootProps, DropdownMenuRootEmits, DropdownMenuContentP
import type { AppConfig } from '@nuxt/schema'
import _appConfig from '#build/app.config'
import theme from '#build/ui/dropdownMenu'
import type { LinkProps } from '#ui/components/Link.vue'
import type { AvatarProps } from '#ui/components/Avatar.vue'
import type { IconProps } from '#ui/components/Icon.vue'
import type { KbdProps } from '#ui/components/Kbd.vue'
import type { DropdownMenuContentSlots } from '#ui/components/DropdownMenuContent.vue'
import type { AvatarProps, IconProps, KbdProps, LinkProps, DropdownMenuContentSlots } from '#ui/types'
const appConfig = _appConfig as AppConfig & { ui: { dropdownMenu: Partial<typeof theme> } }