IPC-610
2024-09-28 a8eaf0a6432009e06b471bc965015e8ef2835b1d
1
2
3
4
5
6
7
8
9
import { t } from '../locale';
 
export default {
    methods: {
        t(...args) {
            return t.apply(this, args);
        }
    }
};