Vite+Vue3中使用moment.js中文国际化无效
moment.js中文国际化无效
安装
官网:moment.js
1 | npm install moment --save # npm |
引入
1 | //main.ts |
无效
使用
1 | const nowTime = moment().format('YYYY-MM-DD HH:mm:ss dddd'); |
解决
1 | import moment from "moment"; |
1 | moment.locales();//["en", "zh-cn"] |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Zon.Zhou!