docs: migrate vant-use document to vant

This commit is contained in:
chenjiahan 2021-06-04 17:18:17 +08:00 committed by neverland
parent 6128434e22
commit 2fa7b10b35
10 changed files with 67 additions and 6 deletions

View File

@ -1,5 +1,7 @@
# useClickAway # useClickAway
### 介绍
监听点击元素外部的事件。 监听点击元素外部的事件。
## 代码演示 ## 代码演示

View File

@ -1,5 +1,7 @@
# useCountDown # useCountDown
### 介绍
提供倒计时管理能力。 提供倒计时管理能力。
## 代码演示 ## 代码演示

View File

@ -1,5 +1,7 @@
# useEventListener # useEventListener
### 介绍
方便地进行事件绑定,在组件 `mounted``activated` 时绑定事件,`unmounted``deactivated` 时解绑事件。 方便地进行事件绑定,在组件 `mounted``activated` 时绑定事件,`unmounted``deactivated` 时解绑事件。
## 代码演示 ## 代码演示
@ -30,7 +32,7 @@ export default {
}; };
``` ```
## 类型定义 ### 类型定义
```ts ```ts
type Options = { type Options = {

View File

@ -1,5 +1,7 @@
# usePageVisibility # usePageVisibility
### 介绍
获取页面的可见状态。 获取页面的可见状态。
## 代码演示 ## 代码演示

View File

@ -1,5 +1,7 @@
# useRect # useRect
### 介绍
获取元素的大小及其相对于视口的位置,等价于 [Element.getBoundingClientRect](https://developer.mozilla.org/zh-CN/docs/Web/API/Element/getBoundingClientRect)。 获取元素的大小及其相对于视口的位置,等价于 [Element.getBoundingClientRect](https://developer.mozilla.org/zh-CN/docs/Web/API/Element/getBoundingClientRect)。
## 代码演示 ## 代码演示

View File

@ -1,17 +1,20 @@
# useRelation # useRelation
### 介绍
建立父子组件之间的关联关系,进行数据通信和方法调用,基于 `provide``inject` 实现。 建立父子组件之间的关联关系,进行数据通信和方法调用,基于 `provide``inject` 实现。
## 代码演示 ## 代码演示
### 基本用法 ### 基本用法
在父组件中使用 `useChildren` 关联子组件:
```js ```js
// Parent.vue
import { ref } from 'vue'; import { ref } from 'vue';
import { useChildren } from '@vant/use'; import { useChildren } from '@vant/use';
const RELATION_KEY = 'my-relation'; const RELATION_KEY = Symbol('my-relation');
export default { export default {
setup() { setup() {
@ -26,12 +29,13 @@ export default {
linkChildren({ add, count }); linkChildren({ add, count });
}, },
}; };
```
// Child.vue 在子组件中使用 `useParent` 获取父组件提供的数据和方法:
```js
import { useParent } from '@vant/use'; import { useParent } from '@vant/use';
const RELATION_KEY = 'my-relation';
export default { export default {
setup() { setup() {
const { parent } = useParent(RELATION_KEY); const { parent } = useParent(RELATION_KEY);

View File

@ -1,5 +1,7 @@
# useScrollParent # useScrollParent
### 介绍
获取元素最近的可滚动父元素。 获取元素最近的可滚动父元素。
## 代码演示 ## 代码演示

View File

@ -1,5 +1,7 @@
# useToggle # useToggle
### 介绍
用于在 `true``false` 之间进行切换。 用于在 `true``false` 之间进行切换。
## 代码演示 ## 代码演示

View File

@ -1,5 +1,7 @@
# useWindowSize # useWindowSize
### 介绍
获取浏览器窗口的视口宽度和高度,并在窗口大小变化时自动更新。 获取浏览器窗口的视口宽度和高度,并在窗口大小变化时自动更新。
## 代码演示 ## 代码演示

View File

@ -410,6 +410,47 @@ module.exports = {
}, },
], ],
}, },
{
title: '组合式 API',
items: [
{
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',
},
],
},
], ],
}, },
'en-US': { 'en-US': {