中等Vue
0 1

Vue过滤器的作用是什么?如何实现一个Vue过滤器?

【概念释义】

过滤器 filter(Vue 2):模板管道格式化显示,如 {{ price | currency }}。Vue 3 已移除,改用 computed方法全局工具函数。定义:Vue.filter("name", fn) 或组件 filters 选项。

【基础使用】

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

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

"qb-hl-comment">// Vue 3 替代

登录查看完整 846

回答讨论

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

本题库更多题目(50)