Skip to content

Commit 4fd1be2

Browse files
committedJul 25, 2024·
fix(Tabs): add missing UIcon import
1 parent e609110 commit 4fd1be2

File tree

1 file changed

+2
-0
lines changed
  • src/runtime/components/navigation

1 file changed

+2
-0
lines changed
 

‎src/runtime/components/navigation/Tabs.vue

+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ import { toRef, ref, watch, onMounted, defineComponent } from 'vue'
5757
import type { PropType } from 'vue'
5858
import { TabGroup as HTabGroup, TabList as HTabList, Tab as HTab, TabPanels as HTabPanels, TabPanel as HTabPanel, provideUseId } from '@headlessui/vue'
5959
import { useResizeObserver } from '@vueuse/core'
60+
import UIcon from '../elements/Icon.vue'
6061
import { useUI } from '../../composables/useUI'
6162
import { mergeConfig } from '../../utils'
6263
import type { TabItem, Strategy } from '../../types'
@@ -69,6 +70,7 @@ const config = mergeConfig<typeof tabs>(appConfig.ui.strategy, appConfig.ui.tabs
6970
7071
export default defineComponent({
7172
components: {
73+
UIcon,
7274
HTabGroup,
7375
HTabList,
7476
HTab,

0 commit comments

Comments
 (0)
Please sign in to comment.