码迷,mamicode.com
首页 > 其他好文 > 详细

vue中过滤器filters的使用

时间:2019-01-07 01:40:16      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:全局   methods   cti   function   UNC   tor   asc   this   keyword   

组件内写法

filters:{
    filter:function(data,arg1,arg2){
        return ....
    }
}

全局写法

filters(‘filter‘,function(data,arg1,arg2){
    retrun ....
})

1.在html中使用
{{ msg | filter(‘arg1‘,‘arg2‘) }}
// msg对应函数中的第一个参数data,arg1为第二个参数,类推
2.methods中使用,并传参
methods:{
    fn(){
        let filter = this.$options.filters[‘filter‘]
        let data = filter(this.msg,arg1,arg2)
    }
}
3.在v-html中使用filters
<p v-html="$options.filters.filter(this.msg,arg1,arg2)"></p>

vue中过滤器filters的使用

标签:全局   methods   cti   function   UNC   tor   asc   this   keyword   

原文地址:https://www.cnblogs.com/sexintercourse/p/10231122.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!