直接在el-input 标签上添加@keyup.enter="funName" 是不起作用的,在组件中使用需要加上.native。
<el-input v-model = "value"@keyup.enter.native="funName"></el-input>