为了账号安全,请及时绑定邮箱和手机立即绑定

2-5计算属性

使用计算属性实现日期的格式化,只显示年月日

这个要怎么弄呢?

求大神帮忙。。。

正在回答

2 回答

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><script src="./vue.js"></script></head><body><div id="app"></div><script>new Vue({el: "#app",template: "<h1>{{fullDate}}</h1>",computed: {fullDate: function () {let now = new Date();let year = now.getFullYear();let month = now.getMonth();let date = now.getDate();return `${year}-${month}-${date}`; //根据自己的需要拼接字符串},},});</script></body></html>


0 回复 有任何疑惑可以回复我~
#1

慕木暮目 提问者

真乃大神也!
2020-09-22 回复 有任何疑惑可以回复我~

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><script src="./vue.js"></script></head><body><div id="app"></div><script>new Vue({el: "#app",template: "<h1>{{fullDate}}</h1>",computed: {fullDate: function () {let now = new Date();let year = now.getFullYear();let month = now.getMonth();let date = now.getDate();return `${year}-${month}-${date}`; //根据自己的需要拼接字符串},},});</script></body></html>

01

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

2-5计算属性

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信