<div id="app">
<!-- only call submit when the `key` is `Enter` -->
<input class="form-control" @keyup.enter="submit">
</div>
html, body {
display: grid;
justify-content: center;
align-content: center;
width: 100%;
height: 100%;
}
const app = Vue.createApp({
methods: {
submit: function (event) {
alert(event.target.value)
}
}
})
const vm = app.mount('#app')