-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix style issue that broke prting in latest vue version
- Loading branch information
1 parent
c545c53
commit 4d2d4d7
Showing
1 changed file
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
4d2d4d7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixes the root cause of #634 so that dependencies can be updated again.
In Vue 3.4.23, the CSS generation for scoped styling changed. Below is the generated CSS in both Vue versions. The previous Vue version is on the left, and the new Vue version is on the right.
This makes clear the true issue, which is that a component's scoped style section should not contain elements that are not in the component (in this case,
body
).4d2d4d7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
vuejs/core#10551 FTR