I have many components that import hosted css files as follows:
<style scoped>
@import 'https://test.com/path/to/my-stylesheets/styles.css';
</style>
What I am wanting is a way to remove these imported stylesheets on an end lifecycle hook such as beforeDestroy
.
Is this possible?