In Vue, when you're using scoped styles but want just one rule to apply globally, you can use the `:global` pseudo-class instead of creating another <style>.
<style scoped>
:global(.red) {
color: red;
}
</style>
A highly curated collection of practical tips, advanced patterns, and performance tweaks for Vue & Nuxt.