Vue.js documentation for Scoped CSS mentions that
You can include both scoped and non-scoped styles in the same component
I built the example application for vue-router
and used two single file components instead of the string templates of the example - the rendering is as expected.
I then tried to apply both scoped and non-scoped styles in the components. In the first one I have
<style scoped>
div {
color: white;
background-color: blue;
}
</style>
<style>
body {
background-color: green;
}
</style>
and the second one
<style scoped>
div {
color: white;
background-color: red;
}
</style>
<style>
body {
background-color: yellow;
}
</style>
The idea is to have the whole body background switch when choosing a specific route.
The scoped
styles are OK - they change depending on the route.
The non-scoped ones do not (screenshots are from Chrome Dev Tools):
- on initial application load (non routed yet) the background is white (which is OK - this is the default one and there is no route for
/
). - when choosing a route, the style for the body is applied correctly (say,
green
from the first component)
- when switching routes and loading the second component the background changes to the new color, it looks like from Chrome Dev Tools that the current style for
background-color
is overwritten. All the other components elements are correctly rendered (content and scoped styling)
- further switches keep the same background (and again, other elements of the relevant component are rendered correctly). There are no changes in Chrome Dev Tools (the last view above is unchanged)
In other words, it looks like the style is stacked and previously overwritten properties are not updated Is this expected behaviour?
I opened a bug report for this and it ended up being expected behaviour. The summary from the report comments:
Thorsten Lünborg:
My summary in the context of the question:
style
is injectedstyle
is injected and overwrites the previousstyle
style
used therefore stays as the authoritative one.I will therefore fallback on binding the
body
class to the current component'sdata