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