DEV Community

Discussion on: Importing Styles to Component Style Tags in Nuxt.js

Collapse
 
souljorje profile image
Georgiy Bukharov

👋
Thx for the article!

U can use css-module (or scss) in this case as well. E.g.:

<style lang="scss" module src="@/assets/styles/components/card.module.scss"/>
Enter fullscreen mode Exit fullscreen mode

Need to suffix file with .module and then you can use it :)

Collapse
 
fridanyvall profile image
Frida Nyvall

Thank you for letting me know! I will update the article to include this as well :).