admin
6 天以前 540beb2946e34bbbc90e283998601b8d65b8937e
1
2
3
4
5
6
7
8
9
import { t } from '../locale';
 
export default {
    methods: {
        t(...args) {
            return t.apply(this, args);
        }
    }
};