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,10 +4,7 @@ import type { NavigationMenuRootProps, NavigationMenuRootEmits } from 'radix-vue
import type { AppConfig } from '@nuxt/schema'
import _appConfig from '#build/app.config'
import theme from '#build/ui/navigationMenu'
import type { LinkProps } from '#ui/components/Link.vue'
import type { AvatarProps } from '#ui/components/Avatar.vue'
import type { BadgeProps } from '#ui/components/Badge.vue'
import type { IconProps } from '#ui/components/Icon.vue'
import type { AvatarProps, BadgeProps, IconProps, LinkProps } from '#ui/types'
const appConfig = _appConfig as AppConfig & { ui: { navigationMenu: Partial<typeof theme> } }