Merged
Conversation
✅ Deploy Preview for vapor-repl ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
@vue/compiler-core
@vue/compiler-dom
@vue/compiler-sfc
@vue/compiler-ssr
@vue/compiler-vapor
@vue/reactivity
@vue/runtime-core
@vue/runtime-dom
@vue/runtime-vapor
@vue/server-renderer
@vue/shared
vue
@vue/compat
commit: |
340d140 to
1854562
Compare
b5f3287 to
1b849a3
Compare
1b849a3 to
c23d635
Compare
4565cf0 to
68577ca
Compare
68577ca to
dcf927f
Compare
bd32ec4 to
8df4184
Compare
8aca259 to
385c21e
Compare
385c21e to
7cfec7f
Compare
Size ReportBundles
Usages
|
6dfc12d to
e92244e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Maximum call stack size exceededoccurredPlayground with this PR
foois a forwarded slot, it is executed, thecurrentInstanceincreateSlotis the instance ofComp, but it should be the instance ofComp1.Therefore, we need to preserve the current component's instance for forwarded slots and use it in
createSlot, similar to howwithCtxworks in VDOM slots. With this PR, the compiled code changes to:Inside the
forwardedSlotCreator, thecurrentInstanceis retained and a function is returned, which calls createSlot and passes the retained instance.Note
This PR includes #13669