vue---サブアセンブリのデータを親コンポーネントに送る.

5386 ワード

App.vue父コンポーネントハロー.vueサブアセンブリ
<!--App.vue  :-->

<template>
  <div id="app">
    <hello @newNodeEvent="parentLisen" />
  </div>
</template>

<script>
    import hello from './components/Hello'
    export default {
        name: 'app',
        'components': {
            hello
        },
        methods: {
            parentLisen(evtValue) {    
                //evtValue          
                alert(evtValue)
            }
        }
    }
</script>
<!--Hello.vue  :-->

<template>
  <div class="hello">
    <input type="button" name="" id="" @click="chilCall()" value="   " /> 
  </div>
</template>

<script>
    export default {
        name: 'hello',
        'methods': {
            chilCall(pars) {
                this.$emit('newNodeEvent', '         ')
            }
        }
    }
</script>