[Vuejs]-Cant resolve scss loader in Vuejs element ui template

1👍

I solved it.. It seems i was using style lang=scss when it was actually not there..

1👍

You CAN use scss with your components.
Just do

npm install sass-loader node-sass webpack --save-dev

Now you may use SASS by having

<style lang="scss" scoped>
</style>

Leave a comment