Recently, an error message has been popping up in Vue 3 regarding the use of ::v-deep
.
The warning states that using
::v-deep
as a combinator is deprecated. Instead, it recommends using::v-deep(<inner-selector>)
Here is an example of the CSS causing the issue:
.parent ::v-deep .child {
...
}
Can someone explain how to correctly implement the recommended option ::v-deep(<inner-selector>)
?