vue中style使用scoped后再使用@import仍为全局作用域

在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仍为全局作用域

上一篇:[BUUCTF]REVERSE——[GUET-CTF2019]number_game


下一篇:前端和后端哪个好