关于VUE怎么使用momentjs,以及可能遇到的问题

moment.js - Libraries - cdnjs - The #1 free and open source CDN built to make life easier for developers

链接下载moment.min.js文件到自己的文件夹目录下

例如

import moment from '@/core/moment.min.js'

用法





可能遇到的eslint报错问题,如下

You may use special comments to disable some warnings.
Use // eslint-disable-next-line to ignore the next line.
Use /* eslint-disable */ to ignore all warnings in a file.
ERROR in [eslint]

解决方法

在moment.min.js的文件上下方分别加上两行注释,即可解决

/* eslint-disable */

// moment.min.js 的实际内容...

/* eslint-enable */

你可能感兴趣的:(vue.js,前端,javascript)