10 lines
144 B
JavaScript
10 lines
144 B
JavaScript
![]() |
import { t } from '../locale';
|
||
|
|
||
|
export default {
|
||
|
methods: {
|
||
|
t(...args) {
|
||
|
return t.apply(this, args);
|
||
|
}
|
||
|
}
|
||
|
};
|