[Vuejs]-Vuejs scoped & unscoped CSS in the same .vue file

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.

Leave a comment