chengsc
2025-06-25 aec8fb5f857231f10dc4a58fc86ecdac2b5d6250
1
2
3
4
5
6
7
8
9
import { t } from '../locale';
 
export default {
    methods: {
        t(...args) {
            return t.apply(this, args);
        }
    }
};