Open
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;
}
}