Vue中过滤的简单使用方法

<span>{{Info.Date  | formatDate}}</span>
export default {
  data() {
    return {
      info{Date:''},
    }
  },
  filters: {
    formatDate(val) {
      if (!val) return '--'
      return moment(val).format('YYYY-MM-DD HH:mm:ss')
    },
  },
发表评论 / Comment

用心评论~