mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
fix(Table): missing component imports (#608)
This commit is contained in:
committed by
Benjamin Canac
parent
53b2655ae5
commit
d9363168b2
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user