热门标签
更多>
搜索结果
查询Tags标签: fatherMethod,共有 2条记录-
Vue系列---【子组件调用父组件的方法】
Vue中子组件调用父组件的方法,三种方法第一种方法是在子组件中通过this.$parent.event来调用父组件的方法(注意:有时候用到第三方框架,需要多套几层$parent)父组件:<template><div><child></child></div> </template> <scri…
2022/4/26 6:13:02 人评论 次浏览 -
vue 父组件 与 子组件 的相互调用
子组件调用父组件的三种方法: 第一种 === 直接在子组件中通过 this.$parent.event 来调用父组件的方法// 父组件<template><div><child></child></div> </template><script>import child from ~/components/dam/child;export …
2022/2/2 23:47:05 人评论 次浏览