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