File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ declare namespace VueCustomElement {
14
14
connectedCallback ?: ( ) => void ;
15
15
disconnectedCallback ?: ( ) => void ;
16
16
attributeChangedCallback ?: ( name : string , oldValue : any , value : any ) => void ;
17
+ beforeCreateVueInstance ?: ( rootElement : ComponentOptions < Vue > ) => ComponentOptions < Vue > ;
17
18
destroyTimeout ?: number ;
18
19
props ?: ComponentOptions < Vue > [ 'props' ] ;
19
20
shadow ?: boolean ;
@@ -27,6 +28,6 @@ declare module 'vue/types/vue' {
27
28
customElement ( tag : string , singleFileComponent : VueConstructor < Vue > , options ?: VueCustomElement . options ) : void ;
28
29
customElement ( tag : string , asyncComponentDefinition : ( ) => Promise < ComponentOptions < Vue > > , options ?: VueCustomElement . options ) : void ;
29
30
}
30
- }
31
31
32
- export default VueCustomElement
32
+ }
33
+ export default VueCustomElement
You can’t perform that action at this time.
0 commit comments