Vue父组件访问子组件和子组件访问父组件


Vue父组件访问子组件和子组件访问父组件

主要记录父组件访问子组件和父组件访问子组件的简单使用


一、父组件访问子组件

访问父组件用this.refs.(ref中的内容)

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>父组件访问子组件</title>
</head>
<body>
    <div id="app">
    	<!--
            给子组件一个ref="box1"
        -->
        <b-box ref="box1"></b-box>
        <!--
            这里在父组件中写了一个按钮
            点击时调用函数
            在函数中使用this.$refs.box1就可访问子组件中的数据
            例:this.$refs.box1.msg可以得到里面的内容
        -->
        <button v-on:click="getChildComponent">获取子组件</button>
    </div>

    <template id="box">
        <div style="background-color: pink;width: 200px;height: 200px">
            <button v-on:click="btnClick">Click Me</button>
        </div>
    </template>

    <script src="js/vue.js"></script>
    <script>
        const Box = {
            data(){
                return{
                    msg:'你好Java'
                }
            },
            methods:{
                btnClick(){
                    alert("你点击了按钮");
                }
            },
            template:'#box'

        }
        
        const app = Vue.createApp({
            data(){
                return{
                    msg:'基础模板'
                }
            },
            components:{
                'b-box':Box
            },
            methods:{
            	/*这里使用this.$refs.box1.msg访问了子组件中的内容*/
                getChildComponent(){
                    console.log(this.$refs.box1.msg);
                }
            }
        }).mount("#app");
    </script>
</body>
</html>

二、子组件访问父组件

在下面代码中NXBox作为NXButton的父组件
Vue实例app类似于NXBox的父组件,类似于NXButton的根组件
访问父组件用this.$parent,访问子组件用this.$root

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>子组件访问父组件</title>
</head>
<body>
    <div id="app">

        <nx-box></nx-box>
    </div>

    <template id="NXButton">
            <button v-on:click="btnClick">You click the button {{count}} times</button>
    </template>

    <template id="NXBox">
        <div style="background-color: mediumpurple;width: 200px;height: 200px">
            <nx-button></nx-button>
        </div>
    </template>

    <script src="js/vue.js"></script>
    <script>
        const NXButton = {
            data() {
                return{
                    count:0
                }
            },
            template:'#NXButton',
            methods:{
                btnClick(){
                    this.count++;
                    //1、子组件访问父组件内容
                    alert(this.$parent.msg);
                    console.log(this.$parent.msg);
                    //2、子组件访问根组件内容
                    alert(this.$root.msg);
                    console.log(this.$root.msg);
                }
            }
        }
        const NXBox = {
            data(){
                return{
                    msg:'这是父组件的内容'
                }
            },
            components:{
                'nxButton':NXButton
            },
            template:'#NXBox'
        }
        const app = Vue.createApp({
            data(){
                return{
                    msg:'这是根组件内容'
                }
            },
            components:{
                'nxBox':NXBox
            }
        }).mount("#app");
    </script>
</body>
</html>

总结

对比总结了父组件访问子组件和子组件访问父组件,方便回顾记忆

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

楠溪泽岸

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值