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
There is a vue component which written used scopedSlot feature, if I compile the source using vue's version larger than 2.6.2, the output content cannot run in 2.5.* environment.
if it compiled from vue 2.6.6, then it cannot be work properly in vue 2.5.*
What is expected?
The output code should work in both vue 2.6 and 2.5 env
What is actually happening?
Only Vue 2.6 env works, vue 2.5 env broken.
Vue 2.6 change the 'resolveScopedSlots' function's parameter, you can see the following differance.
// 2.5.*
function resolveScopedSlots (
fns, // see flow/vnode
res
) {
...
// 2.6.*
function resolveScopedSlots (
fns, // see flow/vnode
hasDynamicKeys,
res
) {
...
After the issue #9438 resolved, this problem occured.