面试题答案
一键面试模板代码
<template>
<div>
<input @keyup.enter="handleEnter" v-model="inputValue">
</div>
</template>
Vue实例中的方法代码
<script>
export default {
data() {
return {
inputValue: ''
};
},
methods: {
handleEnter() {
console.log(this.inputValue);
// 这里写具体触发函数的业务逻辑
}
}
};
</script>