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