I need to create a table using the Cyrillic alphabet, but the keys of the object must be in the Latin alphabet within the program.
Example :
export default {
data() {
return {
wmsFields: ['№', 'Наименование', 'Код', 'Баркод', 'Кол-во', 'Остаток 1С', 'Ряд', 'Стеллаж', 'Полка'],
wms: [
{No: '1', Naimenovanie: 'Jon doe', Kod: '13232', barkod: 'asas'...},
]
}
}