Browse Source
fix: dropdown raido menu type error (#7062)
* fix: dropdown raido menu type
* chore: format code
pull/7043/head
ppxb
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
packages/@core/ui-kit/shadcn-ui/src/components/dropdown-menu/dropdown-radio-menu.vue
|
|
|
@ -27,7 +27,7 @@ function handleItemClick(value: string) { |
|
|
|
</DropdownMenuTrigger> |
|
|
|
<DropdownMenuContent align="start"> |
|
|
|
<DropdownMenuGroup> |
|
|
|
<template v-for="menu in menus" :key="menu.key"> |
|
|
|
<template v-for="menu in menus" :key="menu.value"> |
|
|
|
<DropdownMenuItem |
|
|
|
:class=" |
|
|
|
menu.value === modelValue |
|
|
|
|