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