This repository was archived by the owner on Apr 6, 2023. It is now read-only.
Merged
Conversation
|
|
pi0
approved these changes
Jan 6, 2023
Member
pi0
left a comment
There was a problem hiding this comment.
Other than small comments, neat work 💯
|
A test-MR is working nicely for us for the new Fedora Linux website, and we can't wait to start using it in production once 3.1 ships. Thanks so much for adding this feature! https://gitlab.com/fedora/websites-apps/fedora-websites/fedora-websites-3.0/-/merge_requests/247 |
This was referenced Jan 16, 2023
Merged
danielroe
added a commit
that referenced
this pull request
Jan 21, 2023
7 tasks
12 tasks
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
🔗 Linked issue
resolves nuxt/nuxt#11856
closes #5688
❓ Type of change
📚 Description
Summary
This PR builds on #5689 to add support for registering and rendering server components with
.server.vuesuffix (implementing nuxt/nuxt#11856).Usage
Standalone server components will always be rendered on the server. When their props update, this will result in a network request that will update the rendered HTML in-place.
Server components are currently experimental and in order to use them, you need to enable the 'component islands' feature in your nuxt.config:
Now you can register server-only components with the
.serversuffix and use them anywhere in your application automatically.📝 Checklist