docs(@vant/use): fix demo (#7763)

This commit is contained in:
Sun 2020-12-18 16:55:50 +08:00 committed by GitHub
parent 01ebe4f62f
commit e4297bcbb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -11,7 +11,7 @@
```
```js
import { root } from 'vue';
import { ref } from 'vue';
import { useRect } from '@vant/use';
export default {

View File

@ -8,6 +8,7 @@
```js
// Parent.vue
import { ref } from 'vue';
import { useChildren } from '@vant/use';
const RELATION_KEY = 'my-relation';
@ -29,6 +30,8 @@ export default {
// Child.vue
import { useParent } from '@vant/use';
const RELATION_KEY = 'my-relation';
export default {
setup() {
const { parent } = useParent(RELATION_KEY);

View File

@ -11,7 +11,7 @@
```
```js
import { watch } from 'vue';
import { ref, watch } from 'vue';
import { useScrollParent, useEventListener } from '@vant/use';
export default {