组件-子父通信

Posted 不会起名字

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了组件-子父通信相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>

    </style>
</head>
<body>
<div id="app">
    <balance></balance>
</div>


<script src="../lib/vue.js"></script>
<script src="js/main.js"></script>
</body>
</html>
Vue.component("balance",{
    template:`
    <div>
        <show @show-balance="show_balance()"></show>
        <div v-if="show">
            您的余额是:$9999999!
        </div>
    </div>
    `,
    methods:{
        show_balance:function () {
            console.log("可以来")
            this.show = true
        }
    },
    data:function () {
        return {
            show:false,
        }
    }
})
Vue.component("show",{
    template:`
        <button @click="on_click()">显示余额</button>
        `,
    methods:{
        on_click(){
            console.log("caonidaye")
            this.$emit("show-balance")
        }
    }
})

new Vue({
    el:"#app"
})

 

以上是关于组件-子父通信的主要内容,如果未能解决你的问题,请参考以下文章

组件-子父通信

vue子父组件通信怎么实现

vue子父组件的通信

vue 子父组件之间的通信,及在调用组件的地方

复习一下vue的子父通信

87 全局和局部组件, 子父和父子之间的通信 混入 插槽 路飞导航栏