feat(Locale): add useCurrentLang method (#11517)

This commit is contained in:
neverland 2023-01-25 21:01:02 +08:00 committed by GitHub
parent 769f16169e
commit 816acf7886
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 42 additions and 0 deletions

View File

@ -79,3 +79,23 @@ Current supported languages:
### Add new language
If you cant find the language you need, please send us a Pull Request to add the new language pack, you can refer to [Add German language pack](https://github.com/vant-ui/vant/pull/7245) PR.
### Get Current Lang
You can get the current language using `useCurrentLang` method.
- **Type:**
```ts
function useCurrentLang(): Ref<string>;
```
- **Example:**
```ts
import { useCurrentLang } from 'vant';
const currentLang = useCurrentLang();
console.log(currentLang.value); // --> 'en-US'
```

View File

@ -77,6 +77,26 @@ Locale.add(messages);
> 在 [这里](https://github.com/vant-ui/vant/tree/main/packages/vant/src/locale/lang) 查看所有的语言包源文件。
### 获取当前语言
你可以通过 `useCurrentLang` 方法来获取当前使用的语言。
- **类型:**
```ts
function useCurrentLang(): Ref<string>;
```
- **示例:**
```ts
import { useCurrentLang } from 'vant';
const currentLang = useCurrentLang();
console.log(currentLang.value); // --> 'zh-CN'
```
## 常见问题
### 找不到所需的语言包?

View File

@ -25,4 +25,6 @@ export const Locale = {
},
};
export const useCurrentLang = () => lang;
export default Locale;