Skip to content

Files

Latest commit

 

History

History
19 lines (13 loc) · 292 Bytes

v-deep-pseudo-style.md

File metadata and controls

19 lines (13 loc) · 292 Bytes

Pattern: Inconsistent deep selector style

Issue: -

Description

Enforces consistent usage of either :deep() or ::v-deep() syntax for targeting nested components.

Examples

<style scoped>
/* ✗ BAD */
.foo ::v-deep(.bar) {}

/* ✓ GOOD */
.foo :deep(.bar) {}
</style>