Vue 当前时间转换为XXXX/XX/XX XX:XX:XX带一个返回值
时间: 2024-01-24 21:05:10 浏览: 69
以下是一个将当前时间转换为指定格式的 Vue.js 过滤器,并返回格式化后的时间字符串:
```javascript
Vue.filter('dateFormat', function(value) {
if (value) {
const date = new Date(value);
const year = date.getFullYear();
const month = date.getMonth() + 1;
const day = date.getDate();
const hours = date.getHours();
const minutes = date.getMinutes();
const seconds = date.getSeconds();
const formattedTime = year + '/' + (month < 10 ? '0' + month : month) + '/' + (day < 10 ? '0' + day : day) + ' ' + (hours < 10 ? '0' + hours : hours) + ':' + (minutes < 10 ? '0' + minutes : minutes) + ':' + (seconds < 10 ? '0' + seconds : seconds);
return formattedTime;
}
});
```
然后你可以在 Vue 组件中使用这个过滤器:
```html
<template>
<div>
{{ currentTime | dateFormat }}
</div>
</template>
<script>
export default {
data() {
return {
currentTime: new Date()
}
}
}
</script>
```
这样就会将当前时间以指定格式显示出来。
阅读全文