在Vue Loader中使用scoped可以将css样式作用于局部作用域
<style scoped> @import ‘./a.css‘ </style>
但如果在使用了scoped的style标签中导使用@import仍然会将样式作用于全局作用域。解决方式有两种:
<style src="@import ‘./a.css‘" scoped></style> <style lang="less" scoped> @import ‘./a.css‘ </style>
vue中style使用scoped后再使用@import仍为全局作用域
原文:https://www.cnblogs.com/shiyingxyj/p/15074921.html