-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
Open
Labels
🔨 p3-minor-bugPriority 3: this fixes a bug, but is an edge case that only affects very specific usage.Priority 3: this fixes a bug, but is an edge case that only affects very specific usage.has workaroundA workaround has been found to avoid the problemA workaround has been found to avoid the problemscope: compiler
Description
Vue version
3.5.13
Link to minimal reproduction
Steps to reproduce
Let's display it.
What is expected?
The background color of hoge1
will turn red.
The background color of hoge2
will turn green.
What is actually happening?
The background color of hoge1
will not turn red.
The background color of hoge2
will turn green.
System Info
Vue 3.5.13
TypeScript 5.8.2
browser microsoft edge 134.0
Any additional comments?
This is how it should be:
.base1 {
&[data-v-7ba5bd90] .hoge {
background-color: red;
}
}
In reality, this is what happened:
.base1 {
[data-v-7ba5bd90] .hoge {
background-color: red;
}
}
Metadata
Metadata
Assignees
Labels
🔨 p3-minor-bugPriority 3: this fixes a bug, but is an edge case that only affects very specific usage.Priority 3: this fixes a bug, but is an edge case that only affects very specific usage.has workaroundA workaround has been found to avoid the problemA workaround has been found to avoid the problemscope: compiler