We are using Vue.js and Vuetify for my application. As part of my application, I will make API call on page load based on that API response entire application will render all the components. As part of this API, I will get property named as cssDirection and it tells which css file suppose to load either it's LTR or RTL.
When I worked in Angular, We used this approach.
Now my question is there any workaround to achieve this in Vue instead of the above approach ? I googled I didn't find any solutions.
Thanks