Skip to content

Commit 1f5c29c

Browse files
committed
refactor(CNavGroup): remove active property
1 parent 2f75815 commit 1f5c29c

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

packages/coreui-vue/src/components/nav/CNavGroup.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ import { defineComponent, h, onMounted, ref, RendererElement, Transition, watch
33
const CNavGroup = defineComponent({
44
name: 'CNavGroup',
55
props: {
6-
/**
7-
* Make nav group active and show items.
8-
*/
9-
active: Boolean,
106
/**
117
* Make nav group more compact by cutting all `padding` in half.
128
*/
@@ -20,7 +16,6 @@ const CNavGroup = defineComponent({
2016
setup(props, { slots, emit }) {
2117
const visible = ref()
2218
const navGroupRef = ref()
23-
2419
const visibleGroup = ref()
2520

2621
const handleVisibleChange = (visible: boolean, index: number) => {

0 commit comments

Comments
 (0)