Pattern: Parent selector for ::v-global
pseudo-element
Issue: -
Disallows parent selector for ::v-global
pseudo-element to avoid CSS selector confusion and maintain clear scope boundaries.
<style scoped>
/* ✗ BAD */
.bar ::v-global(.foo) {}
/* ✓ GOOD */
::v-global(.foo) {}
</style>