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