随笔分类 -  Vue

摘要:``` formatter(row, column){ let date = new Date(row.creationTime); let Y = date.getFullYear() + '-'; let M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-'; let D = date. 阅读全文
posted @ 2019-12-11 18:10 Amy小影儿 阅读(1315) 评论(0) 推荐(0)
摘要:报错 Avoid mutating a prop directly since the value will be overwritten whenever the parent component re renders. Instead, use a data or computed proper 阅读全文
posted @ 2019-12-10 16:05 Amy小影儿 阅读(502) 评论(0) 推荐(0)