Skip to content

Commit

Permalink
fix(Table): missing component imports (#608)
Browse files Browse the repository at this point in the history
  • Loading branch information
aditio-eka authored and benjamincanac committed Sep 7, 2023
1 parent 53b2655 commit d936316
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/runtime/components/data/Table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ import { omit, capitalize, orderBy, get } from 'lodash-es'
import { defu } from 'defu'
import { twMerge } from 'tailwind-merge'
import { defuTwMerge } from '../../utils'
import UButton from '../elements/Button.vue'
import UIcon from '../elements/Icon.vue'
import UCheckbox from '../forms/Checkbox.vue'
import type { Button } from '../../types/button'
import { useAppConfig } from '#imports'
// TODO: Remove
Expand All @@ -86,6 +89,11 @@ function defaultComparator<T> (a: T, z: T): boolean {
}
export default defineComponent({
components: {
UButton,
UIcon,
UCheckbox
},
inheritAttrs: false,
props: {
modelValue: {
Expand Down

0 comments on commit d936316

Please sign in to comment.