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
I'm loading a Vue component via a SystemJS register. In my component I have a stylesheet associated to it.
If I add the scoped tag, styles are not applied. If I remove it, styles are applied correctly but it can impact other components in the frontend we're using to load the remote component.
Have you recently faced a similar problem?
It does not work
<style scoped lang="css">
//css
</style>
It does work
<style lang="css">
//css
</style>
The text was updated successfully, but these errors were encountered:
Hello,
I'm loading a Vue component via a SystemJS register. In my component I have a stylesheet associated to it.
If I add the
scoped
tag, styles are not applied. If I remove it, styles are applied correctly but it can impact other components in the frontend we're using to load the remote component.Have you recently faced a similar problem?
It does not work
It does work
The text was updated successfully, but these errors were encountered: