Skip to content

Commit c9f14ce

Browse files
Update domWrapper.ts
1 parent 4139219 commit c9f14ce

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/domWrapper.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@ import { nextTick } from 'vue'
22

33
import { createWrapperError } from './errorWrapper'
44
import { TriggerOptions, createDOMEvent } from './createDomEvent'
5+
import { config } from './config'
56

67
export class DOMWrapper<ElementType extends Element> {
78
element: ElementType
89

910
constructor(element: ElementType) {
1011
this.element = element
12+
// plugins hook
13+
config.plugins.DOMWrapper.extend(this)
1114
}
1215

1316
classes(): string[]

0 commit comments

Comments
 (0)