[Vuejs]-Import compiled sass as string in vue

0👍

import css from '!raw-loader!sass-loader!./../assets/sass/main.scss';

It first compile the sass and then import it as a row string… easy peasy

Leave a comment