Pattern: Inconsistent slotted selector style
Issue: -
Enforces consistent usage of either :slotted()
or ::v-slotted()
syntax for styling slot content.
<style scoped>
/* ✗ BAD */
.foo ::v-slotted(.bar) {}
/* ✓ GOOD */
.foo :slotted(.bar) {}
</style>