10000 chore: clean-up · coreui/coreui-vue@ec013e7 · GitHub
[go: up one dir, main page]

Skip to content

Commit ec013e7

Browse files
committed
chore: clean-up
1 parent 0d7b5a6 commit ec013e7

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

packages/coreui-vue/src/components/popover/CPopover.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { executeAfterTransition } from '../../utils/transition'
55
import { isRTL } from '../../utils'
66

77
const getPlacement = (placement: string, element: HTMLDivElement | null): Placement => {
8-
console.log(element)
98
switch (placement) {
109
case 'right': {
1110
return isRTL(element) ? 'left' : 'right'

packages/coreui-vue/src/components/tooltip/CTooltip.ts

Expand all lines: packages/coreui-vue/src/components/tooltip/CTooltip.ts
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { executeAfterTransition } from '../../utils/transition'
55
import { isRTL } from '../../utils'
66

77
const getPlacement = (placement: string, element: HTMLDivElement | null): Placement => {
8-
console.log(element)
98
switch (placement) {
109
case 'right': {
1110
return isRTL(element) ? 'left' : 'right'

packages/docs/.vuepress/theme-coreui/src/client/components/Header.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,11 @@ export default defineComponent({
9696
},
9797
emits: ['toggle-color-mode', 'toggle-sidebar'],
9898
setup(props) {
99-
console.log(props.theme)
10099
const theme = ref(props.theme)
101100
watch(
102101
() => props.theme,
103102
() => {
104103
theme.value = props.theme
105-
console.log(props.theme)
106104
},
107105
)
108106

0 commit comments

Comments
 (0)
0