iview/src/mixins/locale.js
2019-08-27 09:42:40 +08:00

9 lines
144 B
JavaScript

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