<template>
<h2>Example $emit() Method</h2>
<p>Custom events received from child component:</p>
<p id="pElMsg">{{ message }}</p>
<child-comp v-on:custom-event="this.message+=' Yes?'" />
</template>
<script>
export default {
data() {
return {
message: ' '
}
}
}
</script>
<style>
#pElMsg {
background-color: lightgreen;
padding: 10px;
margin: 0;
max-width: 350px;
display: inline-block;
font-family: 'Courier New', Courier, monospace;
}
</style>