mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
25 lines
662 B
JavaScript
25 lines
662 B
JavaScript
// component mixin
|
|
import { get, camelize } from '../utils';
|
|
|
|
export default {
|
|
computed: {
|
|
$t() {
|
|
const { name } = this.$options;
|
|
const prefix = name ? camelize(name) + '.' : '';
|
|
|
|
if (!this.$vantMessages) {
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
console.error('[Vant] Locale not correctly registered');
|
|
}
|
|
return () => '';
|
|
}
|
|
|
|
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;
|
|
};
|
|
}
|
|
}
|
|
};
|