There are Vue PWA template and Kendo UI for Vue used in my website. There is also Calendar component and need to set its culture to "ru-RU".
In simple jQuery app I would use code (from Globalization Overview):
<script src="kendo.culture.ru-RU.js"></script>
<script type="text/javascript">
//set current to the "ru-RU" culture script
kendo.culture("ru-RU");
</script>
and this would perfectly work.
What is the common way to set culture in Vue App?
I was not able to find any official way in documentation. I used workaround (костыль) directly in my Vue component: