Currently, I am working on a vue js component that I plan on uploading to npm.
However, I have encountered an issue:
Whenever I import a third-party CSS CDN into my component, it ends up applying the styles to the entire HTML instead of just my component.
Is there a way to import the CSS only for my component, so that when a user installs and uses my package, the styles will only affect this specific component without interfering with the user's existing CSS?
Thank you in advance for any help.