docs(chip): update

This commit is contained in:
Benjamin Canac
2024-07-26 16:13:02 +02:00
parent 2f57c43361
commit bcaca46ccc
7 changed files with 158 additions and 4 deletions

View File

@@ -44,7 +44,10 @@ import { computed } from 'vue'
import { Primitive } from 'radix-vue'
import { useAvatarGroup } from '../composables/useAvatarGroup'
const props = defineProps<ChipProps>()
const props = withDefaults(defineProps<ChipProps>(), {
inset: false,
standalone: false
})
defineSlots<ChipSlots>()
const show = defineModel<boolean>('show', { default: true })