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