UNPKG

138 BJavaScriptView Raw
1import { t } from 'element-ui/src/locale';
2
3export default {
4 methods: {
5 t(...args) {
6 return t.apply(this, args);
7 }
8 }
9};