mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
19 lines
526 B
JavaScript
19 lines
526 B
JavaScript
// component mixin
|
|
import { get } from '../../../src/utils';
|
|
import { camelize } from '../../../src/utils/format/string';
|
|
|
|
export default {
|
|
computed: {
|
|
$t() {
|
|
const { name } = this.$options;
|
|
const prefix = name ? camelize(name) + '.' : '';
|
|
const messages = this.$vantMessages[this.$vantLang];
|
|
|
|
return (path, ...args) => {
|
|
const message = get(messages, prefix + path) || get(messages, path);
|
|
return typeof message === 'function' ? message(...args) : message;
|
|
};
|
|
}
|
|
}
|
|
};
|