We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It is mentioned in VueJS's docs that this is possible: https://vue-loader.vuejs.org/guide/scoped-css.html#mixing-local-and-global-styles
But trying it didn't work as it seemed to only render the scoped style.
The text was updated successfully, but these errors were encountered:
it should work as expected ... what is the trouble ? (an example ?)
Sorry, something went wrong.
yes, you're right ... All my tested scope was with ":scope" like this :
<template> <div id="y">Hello Worldo</div> </template> <style scoped> :scope {background:yellow} </style> <style> div {border:2px solid red} </style>
and it works, test in https://manatlan.alwaysdata.net/vbuild/index.html but it's weird
No branches or pull requests
It is mentioned in VueJS's docs that this is possible:
https://vue-loader.vuejs.org/guide/scoped-css.html#mixing-local-and-global-styles
But trying it didn't work as it seemed to only render the scoped style.
The text was updated successfully, but these errors were encountered: