We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ffdef8b + c978d04 commit 42f6663Copy full SHA for 42f6663
packages/coreui-vue/src/directives/v-c-popover.ts
@@ -96,7 +96,7 @@ export default {
96
})
97
}
98
},
99
- unmounted(binding: DirectiveBinding): void {
+ unmounted(_el: HTMLElement, binding: DirectiveBinding): void {
100
const popover = binding.arg && document.getElementById(binding.arg)
101
popover && popover.remove()
102
packages/coreui-vue/src/directives/v-c-tooltip.ts
@@ -92,7 +92,7 @@ export default {
92
93
94
95
- beforeUnmount(binding: DirectiveBinding): void {
+ beforeUnmount(_el: HTMLElement, binding: DirectiveBinding): void {
const tooltip = binding.arg && document.getElementById(binding.arg)
tooltip && tooltip.remove()
0 commit comments