我已使用默认的Vue模板创建待办事项应用程序。我正在将输入与功能连接。当我更改输入值时,我希望文本在控制台上记录。目前无法识别submitTodo()
<template>
<div class="hello">
<h1>{{ msg }}</h1>
<input @keydown.enter="submitTodo" type="text" name="todo" placeholder="Todo">
</div>
</template>
<script>
export default {
name: 'HelloWorld',
props: {
msg: String
},
method:{
submitTodo()
{
console.log("clicked")
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h3 {
margin: 40px 0 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
</style>