ExampleThree
Code of the Vue Component "ExampleThree"
<template>
<input @keyup.enter="onEnter">
</template>
<script>
export default {
name: 'example-three',
methods: {
onEnter() {
this.$emit('clicked-enter');
}
}
};
</script>