$refs
$refs
用于 父传子
值为对象,包含所有被ref
属性标识的DOM
元素或组件实例。
vue
<template>
<h2>父组件</h2>
<button @click="change">修改子组件数据</button>
<button @click="getAllComp($refs)">获取所有子组件实例对象</button>
<hr/>
<child-comp ref="cc"/>
<brother-comp ref="bc"/>
</template>
<script lang="ts" name="ParentComp" setup>
import ChildComp from "@/components/ChildComp.vue";
import BrotherComp from "@/components/BrotherComp.vue";
import {ref} from "vue";
let cc = ref()
let bc = ref()
function change() {
cc.value.num -= 1
bc.value.num += 1
}
function getAllComp(refs:{[key:string]:any}) {
for (let key in refs) {
console.log(refs[key])
}
}
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
vue
<template>
<h2>子组件</h2>
{{ num }}
<hr/>
</template>
<script lang="ts" name="ChildComp" setup>
import {ref} from "vue";
let num = ref(10)
defineExpose({num})
</script>
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
vue
<template>
<h2>兄弟组件</h2>
{{ num}}
</template>
<script lang="ts" name="BrotherComp" setup>
import {ref} from "vue";
let num = ref(10)
defineExpose({num})
</script>
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11