Vue项目中的一些用法:

1. 父组件想要调用子组件内定义的方法:

<DevelopList ref="developList"></DevelopList>
this.$refs.developList.searchDevelopPageList();

其中 searchDevelopPageList() 是子组件中定义的方法。

延伸:DOM中的ref 和 脚本里的$refs的意义

猜你喜欢

转载自www.cnblogs.com/Neilisme/p/11240857.html