Vue.js中如何实现filters的复用?

作者站长头像
站长
· 阅读数 6

例:文字超长后的(ellipsis)省略号, 金额后的(unit)货币单位, 百分比数字后的(percent)百分号?

求解:vue.js 2有什么复用方案可用?

回复
1个回答
avatar
test
2024-07-09

可以挂载到全局 Vue.filter | API — Vue.js。用法如下:

Vue.filter('NumberFormat', function (value) {
  if (!value) {
    return '0'
  }
  let intPartFormat = value.toString().replace(/(\d)(?=(?:\d{3})+$)/g, '$1,')
  return intPartFormat
})

new Vue({
  router,
  store,
  ...
回复
likes
适合作为回答的
  • 经过验证的有效解决办法
  • 自己的经验指引,对解决问题有帮助
  • 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
  • 询问内容细节或回复楼层
  • 与题目无关的内容
  • “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容