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