vuejs / component-compiler-utils

Lower level utilities for compiling Vue single file components
321 stars 75 forks source link

[BUG] scoped style start with >>> #26

Closed weizhenye closed 6 years ago

weizhenye commented 6 years ago

Introducing by 5b299ed864ab59dc4fb410000e0a06ce323e5bba

<style scoped>
>>> .foo {
  color: red;
}
</style>

Before:

[data-v-*] .foo { color: red; }

After:

 .foo { color: red; }
yyx990803 commented 6 years ago

Don't start it with deep. If you need unscoped style, just use a separate style tag.