docs: translate useToggle (#8822)

This commit is contained in:
neverland 2021-06-07 20:52:26 +08:00 committed by GitHub
parent 026a1094c5
commit b3eec95bcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 132 additions and 0 deletions

View File

@ -0,0 +1,64 @@
# useToggle
### Intro
Used to switch between `true` and `false`.
## Usage
### Basic Usage
```js
import { useToggle } from '@vant/use';
export default {
setup() {
const [state, toggle] = useToggle();
toggle(true);
console.log(state.value); // -> true
toggle(false);
console.log(state.value); // -> false
toggle();
console.log(state.value); // -> true
},
};
```
### Default Value
```js
import { useToggle } from '@vant/use';
export default {
setup() {
const [state, toggle] = useToggle(true);
console.log(state.value); // -> true
},
};
```
## API
### Type Declarations
```ts
function useToggle(
defaultValue: boolean
): [Ref<boolean>, (newValue: boolean) => void];
```
### Params
| Name | Description | Type | Default Value |
| ------------ | ------------- | --------- | ------------- |
| defaultValue | Default value | _boolean_ | `false` |
### Return Value
| Name | Description | Type |
| ------ | ------------------------ | ------------------------------ |
| state | State | _Ref\<boolean>_ |
| toggle | Function to switch state | _(newValue?: boolean) => void_ |

View File

@ -0,0 +1,23 @@
# Composables
### Intro
Vant provide some built-in composition APIs, you can directly use these APIs for development.
### Demo
```js
import { useWindowSize } from '@vant/use';
const { width, height } = useWindowSize();
console.log(width.value); // -> window width
console.log(height.value); // -> window height
```
### API List
| Name | Description |
| --- | --- |
| [useCountDown](#/en-US/use-count-down) | Used to manage the countdown |
| [useToggle](#/en-US/use-toggle) | Used to switch between `true` and `false` |

View File

@ -811,6 +811,51 @@ module.exports = {
},
],
},
{
title: 'Composables',
items: [
{
path: 'vant-use-intro',
title: 'Intro',
},
{
path: 'use-toggle',
title: 'useToggle',
},
// {
// path: 'use-count-down',
// title: 'useCountDown',
// },
// {
// path: 'use-rect',
// title: 'useRect',
// },
// {
// path: 'use-event-listener',
// title: 'useEventListener',
// },
// {
// path: 'use-page-visibility',
// title: 'usePageVisibility',
// },
// {
// path: 'use-scroll-parent',
// title: 'useScrollParent',
// },
// {
// path: 'use-window-size',
// title: 'useWindowSize',
// },
// {
// path: 'use-relation',
// title: 'useRelation',
// },
// {
// path: 'use-click-away',
// title: 'useClickAway',
// },
],
},
],
},
},