Skip to content

Commit

Permalink
chore: remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorlxy committed Aug 31, 2023
1 parent 7078dd5 commit eefcd86
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,13 @@ export const CodeGroup = defineComponent({
() => codeGroupStorage.value[codeGroupKey.value],
(val = -1) => {
if (activeIndex.value !== val) {
console.log('codeGroupStorage -> activeIndex')
activeIndex.value = val
}
},
{ immediate: true },
)
watch(activeIndex, (val) => {
if (codeGroupStorage.value[codeGroupKey.value] !== val) {
console.log('activeIndex -> codeGroupStorage')
codeGroupStorage.value[codeGroupKey.value] = val
}
})
Expand Down

0 comments on commit eefcd86

Please sign in to comment.