Vue内置过滤器

1.capitalize:字符串首字符转大写
2.uppercase:字符串转大写
3.lowercase:字符串转小写
4.currency:将数字转化为货币符号,并且自动添加数字分节号
参数 {String}[货币符号], {Number}[小数位]

{{amount | currency '$' 2}}

Vue.js2.0已经移除了内置过滤器

猜你喜欢

转载自blog.csdn.net/qq_35263273/article/details/80621924