vue---父調子 $refs (把父組件的數據傳給子組件)


ps:App.vue 父組件

  Hello.vue 子組件
 

App.vue  :

<template>
    <div id="app">
        <input type="button" name="" id="" @click="parentCall" value="父調子" />
        <hello ref="chil" />//hello組件
    </div>
</template>

<script>
    import hello from './components/Hello'
    export default {
        name: 'app',
        'components': {
            hello
        },
        methods: {
          parentCall () {
            this.$refs.chil.chilFn('我是父元素傳過來的')
          }
        }
    }
</script>

/*Hello.vue  :*/

<template>
    <div class="hello"></div>
</template>

<script>
    export default {
        name: 'hello',
        'methods': {
         chilFn (msg) {
         alert(msg)
        }
        }
    }
</script>                            

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM