简单Vue
0 1

常见 你了解Vue中的过滤器吗?它 有哪些?分别说明应用场景?

【概念释义】

过滤器 filter 用于模板文本格式化(日期、货币、脱敏),管道语法 {{ val | fmt }}。Vue 3 已移除,推荐 computed / methods / 全局工具函数 或组件库格式化。

【基础使用】

javascript
"qb-hl-comment">// Vue 2
Vue.filter("currency", (v) => "¥" + Number(v).toFixed(2));

"qb-hl-comment">// 模板
{{ price | currency }}

"qb-hl-comment">// 替代
computed: { priceText() { return formatCurrency(this.

登录查看完整 698

回答讨论

暂无讨论,登录后可抢先发言

本题库更多题目(50)