feat: 支持 teleport 组件转化为 root-portal 组件#6007
Open
chouchouji wants to merge 8 commits into
Open
Conversation
Size report
|
There was a problem hiding this comment.
Pull request overview
This PR adds compiler support for converting Vue <teleport> usage into the mini-program native/open component <root-portal>, enabling Teleport-like behavior in supported mini-program targets.
Changes:
- Introduces a new Vue AST node transform
transformTeleportinuni-cli-sharedto rewrite<teleport>to<root-portal>, removeto, and mapdisabled→enable(inverted). - Wires
transformTeleportinto the compilernodeTransformspipelines for Weixin / Alipay / JD mini-program targets. - Adds X-mode compiler test coverage validating the generated template/render output for teleport cases.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| packages/uni-mp-weixin/src/compiler/options.ts | Registers transformTeleport in the Weixin mini-program compiler node transform chain. |
| packages/uni-mp-jd/src/compiler/options.ts | Registers transformTeleport in the JD mini-program compiler node transform chain. |
| packages/uni-mp-alipay/src/compiler/options.ts | Registers transformTeleport in the Alipay mini-program compiler node transform chain. |
| packages/uni-cli-shared/src/vue/transforms/transformTeleport.ts | Adds the new transform implementation that rewrites Teleport nodes to root-portal. |
| packages/uni-cli-shared/src/vue/transforms/index.ts | Re-exports transformTeleport from the transforms entrypoint. |
| packages/uni-mp-compiler/tests/tagAndPropForX.spec.ts | Adds test cases covering teleport-to-root-portal rewriting (including disabled). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Allmeekadoo
approved these changes
Jun 6, 2026
This reverts commit cfb6952.
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.
vue teleport
weixin root-portal