Administrator
2025-05-08 0d794d748f61b5c719d665bfcae24a4d9b2b6224
1
2
3
4
5
6
7
8
9
import { t } from '../locale';
 
export default {
    methods: {
        t(...args) {
            return t.apply(this, args);
        }
    }
};