Administrator
2024-03-04 778d43af844492ef0496b0981ee95e0a1da17a6e
1
2
3
4
5
6
7
8
9
import { t } from '../locale';
 
export default {
    methods: {
        t(...args) {
            return t.apply(this, args);
        }
    }
};