vue.js过滤器,过滤器传递多个参数,传递三个参数
电脑版发表于:2022/1/29 11:00
多个参数往后面写即可
全局写一个过滤器:
Vue.filter("filter_link_front_behind",function(front,start,url,behind){ // console.log("---------------"); // console.log(front); // console.log(start); // console.log(url); // console.log(behind); return start+front+url+behind; })
使用:
:href="item.userName|filter_link_front_behind('http://m.xx.net/','/article/UserCategory/',item.aClassId)"