This commit is contained in:
Zyronon
2025-10-12 03:37:34 +08:00
parent b36aaf2370
commit eac6fd6748
13 changed files with 123 additions and 57 deletions

View File

@@ -5,13 +5,13 @@ import { nextTick, watch } from 'vue'
const props = withDefaults(defineProps<{
list?: any[],
activeIndex?: number,
activeId?: string,
activeId?: number,
isActive?: boolean
static?: boolean
}>(), {
list: [],
activeIndex: -1,
activeId: '',
activeId: null,
isActive: false,
static: true
})