美文网首页
批量安装过滤器

批量安装过滤器

作者: 且听风吟_792d | 来源:发表于2020-07-10 17:10 被阅读0次
    let filters = {
        dateDay: function (timestamp) {
            return parseInt(Date.parse(new Date()) / 1000); 
        }
    }
    Object.keys(filters).forEach(key => {
       Vue.filter(key, filters[key])
    });
    

    相关文章

      网友评论

          本文标题:批量安装过滤器

          本文链接:https://www.haomeiwen.com/subject/mfimcktx.html