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