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
I've isolated an edge case when using css modules and scss generate a Comment where a HTMLDivElement is expected.
Comment
HTMLDivElement
spec.js
const Constructor = Vue.extend(myComponent); const vm = new Constructor().$mount();
myComponent
This doesn't work
<template lang="pug"> div( :class="$style.box" ) hello </template> <style module lang="scss"> .box { color: red; } </style>
This works
<template lang="pug"> div( :class="$style.box" ) hello </template> <style module> .box { color: red; } </style>
The text was updated successfully, but these errors were encountered:
This should be fixed by #73
I've release in 2.2.0. Can you confirm the issue has been fixed?
Sorry, something went wrong.
@leRenart @eddyerburgh Had the same issue. Found some of the (alleged) problems at least. Also added a unit test that should help fixing this. See #79
aa94fef
No branches or pull requests
I've isolated an edge case when using css modules and scss generate a
Comment
where aHTMLDivElement
is expected.spec.js
const Constructor = Vue.extend(myComponent); const vm = new Constructor().$mount();
myComponent
This doesn't work
This works
The text was updated successfully, but these errors were encountered: