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
Assume the scope tags for these two components are data-v-0000000a and data-v-0000000b.
Normally, the child-root element should have BOTH scope tags. However, if showMe starts out false, then child-root is never given the parent scope tag (data-v-0000000a). It only gets data-v-0000000b, which means that make-it-red never applies to child-root.
Correct output (after showMe has been flipped to true):
Uh oh!
There was an error while loading. Please reload this page.
Consider this child component:
And this parent component:
Assume the scope tags for these two components are
data-v-0000000a
anddata-v-0000000b
.Normally, the
child-root
element should have BOTH scope tags. However, ifshowMe
starts outfalse
, thenchild-root
is never given the parent scope tag (data-v-0000000a
). It only getsdata-v-0000000b
, which means thatmake-it-red
never applies tochild-root
.Correct output (after showMe has been flipped to
true
):Actual output:
The text was updated successfully, but these errors were encountered: