vue global filters

Posted fenle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue global filters相关的知识,希望对你有一定的参考价值。

//main.js

import * as filters from ./filters
// console.log(filters);
Object.keys(filters).forEach(key => 
  Vue.filter(key, filters[key])
)

//filters.js

export function gender(val) 
    return ["未知", "", ""][val];


export function boolText(val) 
    return ["", ""][val];

export function strTrim(val, len, start = 0) 
    if (!val) 
        return ‘‘;
    
    return val.slice(start, len)

export function statusText(val) 
    return ["禁用", "启用"][val];

 

以上是关于vue global filters的主要内容,如果未能解决你的问题,请参考以下文章

vue global filters

如何使用 Vue 实例中的 Global Mixin 方法

在使用 jest 的 vue 测试中找不到模块“@jest/globals”

在 Jest 中测试 Global Vue.prototype.$http 方法,它在 Vue 中使用 axios

markdown node.js:vue / cli-service-global

Vue组件信息传递和Vue项目开发