0👍
You can load scss files in your script part of your Vue component
typescript
import "@/path/to/style.scss"
javascript
require("@/path/to/style.scss")
that way you can have load multiple style sheets into your component at once.
- [Vuejs]-Vue – Handle non English characters in an attribute
- [Vuejs]-The arguments ' to ' and ' from ' in vue router beforeEach function is not invoked, ESlint give me the warning ' 'to' is defined but never used '
Source:stackexchange.com