Skip to content

Commit

Permalink
feat(#93): add popover group prop
Browse files Browse the repository at this point in the history
  • Loading branch information
Decipher committed Sep 12, 2024
1 parent 3d77163 commit c7ae9cd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/Popover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
:class="`ct-popover ${themeClass}`"
data-collapsible="1"
data-collapsible-collapsed=""
data-collapsible-group=""
:data-collapsible-group="group"
data-collapsible-duration="250"
>
<a
Expand Down Expand Up @@ -39,6 +39,10 @@ export default {
mixins: [ThemeMixin],
props: {
group: {
type: String,
default: undefined
},
tag: {
type: String,
validator: (value) => ['div', 'span'].includes(value),
Expand Down

0 comments on commit c7ae9cd

Please sign in to comment.