You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Vue per the docs is using a generated attribute names for scoped styles, for example it turns <style scoped> selectors from .a:hover into .a[vue-1]:hover. Matching and tracking the invalidation of attribute selectors is slow though, and you'd get much better RecalcStyle (see Chrome devtools timeline) performance if you use a generated class name like .a.vue-scope-1:hover {}
The text was updated successfully, but these errors were encountered:
Vue.js version
2.0.2
Vue per the docs is using a generated attribute names for scoped styles, for example it turns <style scoped> selectors from .a:hover into .a[vue-1]:hover. Matching and tracking the invalidation of attribute selectors is slow though, and you'd get much better RecalcStyle (see Chrome devtools timeline) performance if you use a generated class name like .a.vue-scope-1:hover {}
The text was updated successfully, but these errors were encountered: