JiangShan-app/common/filters.js

8 lines
134 B
JavaScript
Raw Normal View History

2025-05-22 16:23:08 +08:00
import Vue from 'vue';
let vm = new Vue();
// 测试过滤器
export function toUpperCase(arg) {
return arg && arg.toUpperCase();
}