We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18d8ec4 commit 1133bd4Copy full SHA for 1133bd4
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