You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function createComponentInstanceForVnode (
vnode, // we know it's MountedComponentVNode but flow doesn't
parent // activeInstance in lifecycle state
) {
...
}
What is actually happening?
function createComponentInstanceForVnode (
vnode, // we know it's MountedComponentVNode but flow doesn't
parent, // activeInstance in lifecycle state
) {
...
}
I've got an error when trying to add the vue.esm.browser.js file into a bundle using systemjs-builder
The text was updated successfully, but these errors were encountered:
Version
2.6.10
Reproduction link
https://github.com/vuejs/vue/blob/dev/dist/vue.esm.browser.js#L3296
Steps to reproduce
See the link https://github.com/vuejs/vue/blob/dev/dist/vue.esm.browser.js#L3296
What is expected?
function createComponentInstanceForVnode (
vnode, // we know it's MountedComponentVNode but flow doesn't
parent // activeInstance in lifecycle state
) {
...
}
What is actually happening?
function createComponentInstanceForVnode (
vnode, // we know it's MountedComponentVNode but flow doesn't
parent, // activeInstance in lifecycle state
) {
...
}
I've got an error when trying to add the vue.esm.browser.js file into a bundle using systemjs-builder
The text was updated successfully, but these errors were encountered: