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