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