fix(Table): missing component imports (#608)

This commit is contained in:
Aditio Pangestu
2023-09-05 15:17:52 +07:00
committed by Benjamin Canac
parent 53b2655ae5
commit d9363168b2

View File

@@ -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
@@ -86,6 +89,11 @@ function defaultComparator<T> (a: T, z: T): boolean {
}
export default defineComponent({
components: {
UButton,
UIcon,
UCheckbox
},
inheritAttrs: false,
props: {
modelValue: {