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