摘要:
//日期格式化 export function formatDate(date,fmt){ var o = { "M+":date.getMonth() + 1,//月份 "D+":date.getDay(),//日 "h+":date.getHours(),//hours "m+":date.getMinutes(),/... 阅读全文
摘要:
在Vue中使用v-show指令来选择性的显示内容。它的属性值可以是布尔值、属性名称以及函数名称。如果使用函数来控制的话,无论函数内容如何运算判断,最终返回布尔值true或者false就可以了 阅读全文