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>.

vue
<style scoped>
:global(.red) {
  color: red;
}
</style>