vue中父组件改变子组件中的data

父组件:father.vue

<template>
    ...
    <button @click="changeChild">Change</button>
    <children ref="child"></children>
    ...
</template>

<script>
import children from ".../children"

export default {
    methods: {
        changeChild() {
            this.$refs.child.childData = true;    // 这句很重要
        }
    }
}
</script>

子组件:children.vue

<script>
export default {
    data() {
        childData: false,
    }
}
</script>

效果:

在父组件中有一个按钮,点击这个按钮可以改变子组件 children 中的 childData 的值变为 true。

全部评论

相关推荐

喜欢走神的孤勇者练习时长两年半:爱华,信华,等华,黑华
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务