mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(@vant/use): fix demo (#7763)
This commit is contained in:
parent
01ebe4f62f
commit
e4297bcbb6
@ -11,7 +11,7 @@
|
||||
```
|
||||
|
||||
```js
|
||||
import { root } from 'vue';
|
||||
import { ref } from 'vue';
|
||||
import { useRect } from '@vant/use';
|
||||
|
||||
export default {
|
||||
|
@ -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);
|
||||
|
@ -11,7 +11,7 @@
|
||||
```
|
||||
|
||||
```js
|
||||
import { watch } from 'vue';
|
||||
import { ref, watch } from 'vue';
|
||||
import { useScrollParent, useEventListener } from '@vant/use';
|
||||
|
||||
export default {
|
||||
|
Loading…
x
Reference in New Issue
Block a user