Scoped css for Nuxt.js layout
问题 I'm working with nuxt and i have a header layout for my nav. This nav has a background color of white. On a special page, i want to make the nav background color transparent. (Only for this page) I've tried those: This will make the background transparent to all pages.(I don't want that) <style lang="css"> nav { background-color: rgba(0, 0, 0, 0); } This won't work cause my nav it's not in this page, it's included from nuxt layout. <style lang="css" scoped> nav { background-color: rgba(0, 0,