# 6、时间更新

  • 基于Git提交时间
  • 修改文字
  • 时间格式 moment

image-20231123121036174

# 最后更新时间

image-20231123121236506

# 时间格式修改

下载库文件
yarn add moment



const moment = require('moment');
moment.locale('zh-cn')

module.exports = {
    themeConfig: {
        lastUpdated: '更新时间',
    },
    plugins: [
        [
            '@vuepress/last-updated',
            {
                transformer: (timestamp, lang) => {
                    //return moment(timestamp).fromNow()
                    return moment(timestamp).format("LLLL")
                }
            }
        ]
    ],
}

moment官网 (opens new window)

moment中文网 (opens new window)

image-20231123121458089

image-20231123131116684

更新时间: 2023年12月5日星期二下午4点18分