vue 全局过滤器时间戳转日期
时间: 2023-08-13 17:04:26 浏览: 42
vue将后台数据时间戳转换成日期格式
5星 · 资源好评率100%
可以使用 Vue 的全局过滤器来实现时间戳转日期的功能。以下是一个示例:
```javascript
Vue.filter('formatDate', function(value) {
if (value) {
const date = new Date(value)
const year = date.getFullYear()
const month = date.getMonth() + 1
const day = date.getDate()
return `${year}-${month < 10 ? '0' + month : month}-${day < 10 ? '0' + day : day}`
}
})
```
然后在模板中使用该过滤器:
```html
<p>{{ timestamp | formatDate }}</p>
```
其中 `timestamp` 是一个包含时间戳的变量。该过滤器会将时间戳转换为形如 `YYYY-MM-DD` 的日期格式。
阅读全文