html代码:{{ it.priceType == 5 ? "元" : (it.priceType | priceText) }}下面是过滤器:Vue.filter('priceText', function(l){ l = parseFloat(l) || 0; var o = ["钱", "元", "小", "中", "大", "元"]; return o[l];});使用這個就返回空了是不是我写的方式有问题呢?
添加回答
举报
0/150
提交
取消