element-plus/packages/locale/mixin.ts

10 lines
123 B
TypeScript
Raw Normal View History

2020-07-28 20:18:11 +08:00
import { t } from './index'
export default {
methods: {
t(...args) {
return t.apply(this, args)
},
},
}