I put each of the page CSS at bottom of script tag , like example
<style src="~/assets/css/about.css"></style>
but when i route to another page, if the new page element have the same CSS class with previous page element, it will take the previous page CSS, i know put my CSS in style tag with scoped will prevent this case happen, so any way i can import my CSS in style tag with scoped? I tried
<style scoped>
@import '~/assets/css/about.css';
</style>
but it not working, any one can teach me how to do it :)