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