iview/src/mixins/locale.js
梁灏 4ab118119a some component support i18n
some component support i18n
2017-01-11 21:02:55 +08:00

9 lines
144 B
JavaScript

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