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 b2717bc commit 6362bf9Copy full SHA for 6362bf9
components/_util/ContainerRender.jsx
@@ -1,6 +1,4 @@
1
-import Vue from 'vue';
2
import PropTypes from './vue-types';
3
-import Base from '../base';
4
5
export default {
6
props: {
@@ -53,8 +51,7 @@ export default {
53
51
this.container.appendChild(el);
54
52
}
55
if (!this._component) {
56
- const V = Base.Vue || Vue;
57
- this._component = new V({
+ this._component = new this.$root.constructor({
58
el: el,
59
parent: self.parent,
60
data: {
0 commit comments