We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4139219 commit c9f14ceCopy full SHA for c9f14ce
src/domWrapper.ts
@@ -2,12 +2,15 @@ import { nextTick } from 'vue'
2
3
import { createWrapperError } from './errorWrapper'
4
import { TriggerOptions, createDOMEvent } from './createDomEvent'
5
+import { config } from './config'
6
7
export class DOMWrapper<ElementType extends Element> {
8
element: ElementType
9
10
constructor(element: ElementType) {
11
this.element = element
12
+ // plugins hook
13
+ config.plugins.DOMWrapper.extend(this)
14
}
15
16
classes(): string[]
0 commit comments