Pattern: Missing ::v-slotted()
argument
Issue: -
Requires that a selector argument be passed to ::v-slotted()
pseudo-element when styling slotted content.
<style scoped>
/* ✗ BAD */
.baz .qux ::v-slotted() {}
.baz .qux ::v-slotted {}
/* ✓ GOOD */
.baz .qux ::v-slotted(.foo .bar) {}
</style>