Skip to content

Commit 196f607

Browse files
committed
chore: clean-up
1 parent f6f1162 commit 196f607

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

src/components/accordion/CAccordionButton.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ const CAccordionButton = defineComponent({
66
const toggleVisibility = inject('toggleVisibility') as () => void
77
const visible = inject('visible') as Ref<boolean>
88

9-
console.log(visible)
10-
119
return () =>
1210
h(
1311
'button',

src/components/carousel/CCarousel.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,6 @@ const CCarousel = defineComponent({
9898
customInterval.value = value
9999
}
100100

101-
watch(customInterval, () => console.log(customInterval.value))
102-
103101
provide('setAnimating', setAnimating)
104102
provide('setCustomInterval', setCustomInterval)
105103

src/directives/v-c-tooltip.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ const toggleTooltipElement = (tooltip: HTMLDivElement, el: HTMLElement, popperOp
4545

4646
export default {
4747
mounted(el: HTMLElement, binding: DirectiveBinding): void {
48-
console.log(binding)
49-
5048
const value = binding.value
5149
const content = typeof value === 'string' ? value : value.content ? value.content : ''
5250
const trigger = value.trigger ? value.trigger : 'hover'

0 commit comments

Comments
 (0)