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 81ae36c commit 489ded4Copy full SHA for 489ded4
src/main.js
@@ -106,7 +106,10 @@ function extend (options) {
106
}
107
108
// inherit options
109
- options = inheritOptions(options, ParentVM.options, true)
+ // but only when the super class is not the native Vue.
110
+ if (ParentVM !== ViewModel) {
111
+ options = inheritOptions(options, ParentVM.options, true)
112
+ }
113
utils.processOptions(options)
114
115
var ExtendedVM = function (opts, asParent) {
0 commit comments