Vue imports external css without polluting the whole world

Import external css

<style src="./main.css" scoped>
</style>

Import external less

Need to install the lessplugin first

npm install less less-loader 
<style src="./main.less" lang="less" scoped>
</style>

Guess you like

Origin blog.csdn.net/AK852369/article/details/111031321