Vue之在methods中使用filter的方法
转载自:https://www.jianshu.com/p/70dc9ca9f3541、filter有两种方式设置全局的filter的方法Vue.filter(‘name’,function (val) {})设置当前组件的方法filter: {functionName (val) {// logic process}}2、如果想在...
·
转载自:https://www.jianshu.com/p/70dc9ca9f354
1、filter有两种方式
设置全局的filter的方法
Vue.filter(‘name’,function (val) {})
设置当前组件的方法
filter: {
functionName (val) {
// logic process
}
}
2、如果想在methods中使用filters的方法,相应的就有两种方法
使用全局的filter: Vue.filters['filterName'] (val)
使用局部的filter: this.$options.filters['filterName'] (val)
更多推荐
已为社区贡献24条内容
所有评论(0)