vue时间格式化
2020-05-29 本文已影响0人
simplerandom
<body>
<div id="div">
{{data|d2s}}
</div>
</body>
<script>
Vue.filter("d2s", function (value) {
return new moment(value).format("YYYY");
})
var vue = new Vue({
el: "#div",
data: {
data: new Date()
}
})
</script>
传入指定format格式没有则默认
<body>
<div id="div">
{{data|d2s("YYYY年MM月DD日")}}
{{data|d2s}}
</div>
</body>
<script>
Vue.filter("d2s", function (value,format) {
return new moment(value).format(format||"YYYY");
})
var vue = new Vue({
el: "#div",
data: {
data: new Date()
}
})
</script>