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
组件A,在a.scss文件中引入组件B的b.scss @import '../b/b.scss';
@import '../b/b.scss';
转换后b组件的b.scss没了,变成了b.vue(样式在<style>中)。但是a.vue的<style>还存在@import '../b/b.scss';
显而易见
vue可以将样式独立成文件,避免这种情况
The text was updated successfully, but these errors were encountered:
No branches or pull requests
问题描述?
组件A,在a.scss文件中引入组件B的b.scss
@import '../b/b.scss';
转换后b组件的b.scss没了,变成了b.vue(样式在<style>中)。但是a.vue的<style>还存在
@import '../b/b.scss';
重现步骤
显而易见
期望的结果
vue可以将样式独立成文件,避免这种情况
The text was updated successfully, but these errors were encountered: