element-plus/packages/locale/mixin.ts
2020-08-04 10:44:00 +08:00

10 lines
123 B
TypeScript

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