Skip to content

Commit 8952b5b

Browse files
committed
[build] 3.2.3
1 parent 65ed81a commit 8952b5b

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

dist/vue-custom-element.esm.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* vue-custom-element v3.2.2
2+
* vue-custom-element v3.2.3
33
* (c) 2018 Karol Fabjańczuk
44
* @license MIT
55
*/
@@ -478,9 +478,11 @@ function install(Vue) {
478478
asyncComponentPromise.then(function (lazyLoadedComponent) {
479479
var lazyLoadedComponentProps = getProps(lazyLoadedComponent);
480480
createVueInstance(_this, Vue, lazyLoadedComponent, lazyLoadedComponentProps, options);
481+
typeof options.vueInstanceCreatedCallback === 'function' && options.vueInstanceCreatedCallback.call(_this);
481482
});
482483
} else {
483484
createVueInstance(this, Vue, componentDefinition, props, options);
485+
typeof options.vueInstanceCreatedCallback === 'function' && options.vueInstanceCreatedCallback.call(this);
484486
}
485487
}
486488

dist/vue-custom-element.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* vue-custom-element v3.2.2
2+
* vue-custom-element v3.2.3
33
* (c) 2018 Karol Fabjańczuk
44
* @license MIT
55
*/
@@ -484,9 +484,11 @@ function install(Vue) {
484484
asyncComponentPromise.then(function (lazyLoadedComponent) {
485485
var lazyLoadedComponentProps = getProps(lazyLoadedComponent);
486486
createVueInstance(_this, Vue, lazyLoadedComponent, lazyLoadedComponentProps, options);
487+
typeof options.vueInstanceCreatedCallback === 'function' && options.vueInstanceCreatedCallback.call(_this);
487488
});
488489
} else {
489490
createVueInstance(this, Vue, componentDefinition, props, options);
491+
typeof options.vueInstanceCreatedCallback === 'function' && options.vueInstanceCreatedCallback.call(this);
490492
}
491493
}
492494

dist/vue-custom-element.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/demo.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/demo.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)