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