I imported the semantic-ui css to the top Vue component in my app(App.vue) as the following
<style>
@import '/assets/css/semantic.rtl.min.css';
</style>
but the Css is not available and not applied I am well aware that I could import CSS files in index.html but I wanted to load it in the app so it got compile in to one file along other files. in general what is the best way for importing global static CSS files to VueJs? should I do some more configuration for properly loading the CSS files?