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