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