33.$refs、$parent、$children使用

1、ref为子组件指定一个索引名称,通过索引来操作子组件;
2、this.$parent 可以直接访问该组件的父实例或组件;
3、父组件也可以通过this.$children 访问它所有的子组件,
$parent和$children 可以递归向上或向下无线访问, 直到根实例或最内层的组件。

案例

index.vue



test.vue



test2.vue



你可能感兴趣的:(33.$refs、$parent、$children使用)