我正在尝试用Nuxt/i18 n本地化DateTime,
但它不起作用
这是我在nuxt config中的Nuxt/i18 n配置中的内容:
{
seo: true,
locales: [
{
code: 'en',
iso: 'en-US',
file: 'en.js',
dir: 'ltr',
name: 'English',
id: 2,
}
],
lazy: true,
langDir: 'locales/',
defaultLocale: 'en',
strategy: 'prefix_except_default',
dateTimeFormats: {
'en-US': {
short: {
year: 'numeric',
month: 'long',
day: 'numeric',
weekday: 'short',
},
long: {
year: 'numeric',
month: 'short',
day: 'numeric',
weekday: 'short',
hour: 'numeric',
minute: 'numeric',
},
},
},
},
我该怎么解决这个问题?
1条答案
按热度按时间gojuced71#
使用nuxt.config.js的i18n部分中的vueI18n选项
参见this post