最近在试着用vue重写代码。html里有个时间值,比如2017-01-18,这个时间值正常是从后台服务器传过来的,如果后台没有传过来数据就给一个默认值,这个默认值是上3个月的最后一天。 var time_vue = new Vue({
el: '#dateOnlyExample',
data: {
time: data_x[0] || 这里是一个函数,我要怎么写??
},
methods: {
get_time: function (event) {
..... return time;
}
}
});
1 回答
神不在的星期二
TA贡献1963条经验 获得超6个赞
在生命周期
created(){ this.time=this.get_time(); }
或者直接使用
computed{ default_time:''}
添加回答
举报
0/150
提交
取消