vue子组件调用父组件的方法

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/woshidamimi0/article/details/86092377

vue中有一个api可以调用,地址:https://cn.vuejs.org/v2/api/#vm-parent

假设父组件有方法

 methods: {
    parentMethod () {
        console.log('from parent')
    }
}

子组件可以这样调用

methods: {
    childMethod () {
        this.$parent.parentMethod()
    }
}

猜你喜欢

转载自blog.csdn.net/woshidamimi0/article/details/86092377