Vue + vant 时间戳转为 YYYY_MM_DD格式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue + vant 时间戳转为 YYYY_MM_DD格式相关的知识,希望对你有一定的参考价值。
参考技术A Vue + vant 时间戳转为 YYYY_MM_DD格式Day.js文档 npm install dayjs --save
在 main.js 引入 import dayjs from 'dayjs' 挂载到原型使用 Vue.prototype.$d = dayjs
使用:
<van-datetime-picker
type="date"
@confirm="onConfirmValidTo“”
/>
onConfirmValidTo(time)
this.formDtata.validTo = this.$d(time).format("YYYY-MM-DD")
this.showValidTo = false
,
以上是关于Vue + vant 时间戳转为 YYYY_MM_DD格式的主要内容,如果未能解决你的问题,请参考以下文章