Vue 的基本知识 过滤器 filter
过滤器 filter
过滤器可被用作一些常见的文本格式化
注意: 过滤器只能用在 2 个地方: {{ }}
和 v-bind
表达式
1. 全局过滤器
<template>
<div>
<p>{{ msg | msgFormat}}</p>
</div>
</template>
<script>
Vue.filter('msgFormat', function(msg){
return msg.replace(/\,/g, '!');
})
Vue.filter('msgFormat', function(msg, arg, arg2){
return msg.replace(/\,/g, arg + arg2);
})
Vue.filter('test', function(msg){
return msg + '哈哈'
})
</script>
2. 私有过滤器
<script>
filters:{
dateFormat:function(dateStr, pattern){
}
}
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
上一篇: Vue 的基本知识 组件
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论