When working with multiple Vue components, do you prefer writing your (S)CSS within the Vue Component itself or do you stick to using Modules in Webpack?
I wonder if having CSS directly in Vue means that the browser only loads necessary styles when a specific Component is used. However, it may lead to main.js file size getting larger.
What approach would you take in this scenario? I'm interested to hear your thoughts!