引入外部文件时,想要只在当前组件使用,但是我们使用如下方式时,会在全局使用。因为在scoped起作用的时候,import还没有引入这个文件
<style scoped> @import "../../xx.css" </style>
使用以下方式即可
<style scoped src="../../xx.css"></style>