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