iview/src/mixins/locale.js

10 lines
144 B
JavaScript
Raw Normal View History

import { t } from '../locale';
export default {
methods: {
t(...args) {
return t.apply(this, args);
}
}
};