vue获取当前系统时间
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
1.获取当前系统时间时分秒
// 标准时间格式转化为年月日时分秒
export function ssDateTimeFn(timestamp) {
if (!timestamp) {
return timestamp
}
// timestamp是整数,否则要parseInt转换,不会出现少个0的情况
const time = new Date(timestamp)
const year = time.getFullYear()
const month = time.getMonth() + 1
const date = time.getDate()
const hours = time.getHours()
const minutes = time.getMinutes()
const seconds = time.getSeconds()
return year + '-' + add0(month) + '-' + add0(date) + ' ' + add0(hours) + ':' + add0(minutes) + ':' + add0(seconds)
}
import {
ssDateTimeFn
} from '@/utils/commonss' // 公共事件引入使用
ssDateTimeFn(new Date())
2.// 标准时间格式转化为年月日时分
// 标准时间格式转化为年月日时分
function mmDateTimeFn(timestamp) {
if (!timestamp) {
return timestamp
}
// timestamp是整数,否则要parseInt转换,不会出现少个0的情况
const time = new Date(timestamp)
const year = time.getFullYear()
const month = time.getMonth() + 1
const date = time.getDate()
const hours = time.getHours()
const minutes = time.getMinutes()
// const seconds = time.getSeconds()
return year + '-' + add0(month) + '-' + add0(date) + ' ' + add0(hours) + ':' + add0(minutes)
}
3.年月日不带时分
// 年月日 不带时分
function dateFormat(timestamp) {
if (!timestamp) {
return timestamp
}
// timestamp是整数,否则要parseInt转换,不会出现少个0的情况
const time = new Date(timestamp)
const year = time.getFullYear()
const month = time.getMonth() + 1
const date = time.getDate()
return year + '-' + add0(month) + '-' + add0(date)
}
GitHub 加速计划 / vu / vue
207.54 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:2 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 4 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
更多推荐
已为社区贡献2条内容
所有评论(0)