wxw
2025-07-19 366377c9d97c379e05cf758e05c5bc55fe3b930e
1
2
3
4
5
6
7
8
9
import { t } from '../locale';
 
export default {
    methods: {
        t(...args) {
            return t.apply(this, args);
        }
    }
};