<n-select v-model:value="value" :options="options" />
options: [
{
label: "Every Person",
value: 'file',
},
{
label: 'Drive My Vehicle',
value: 'category'
}
]
value: ref('file'),
en:
category: Category
file: File
cn:
category : 类别
file: 文件
What is the best way to translate SELECT options using i18N in VUE3?
Your assistance is greatly appreciated