I am working on a CSS documentation with VuePress, and don't manage to import a .css file into a component. The website is quite old and there are still differences between desktop, smartphone... so I need to be able to import a precise .css file into a Vue component.
I did this:
<style lang="scss" scoped>
@import url('...');
</style>
But it doesn't work. Importing it into the config.js will not allow me to change .css files, and I need to to be able to choose depending upon the component.
Does anyone have an idea? Thanks.