JuHua-app/common/filters.js

8 lines
134 B
JavaScript
Raw Permalink Normal View History

2024-12-09 14:16:57 +08:00
import Vue from 'vue';
let vm = new Vue();
// 测试过滤器
export function toUpperCase(arg) {
return arg && arg.toUpperCase();
}