慕移动5193967
2020-03-04 20:44
template>
<div>
<div>
<input v-model:="inputValue" />
<button @click="handleSubmit">提交</button>
</div>
<ul>
</ul>
</div>
</template>
<script>
export default {
data: function () {
return {
inputValue: ''
}
},
method: {
handleSubmit: function () {
alert(123)
}
}
}
</script>
<style></style>
为什么在vscode 就是运行不了,代码没有提示任何问题
method少了个s吧
vue2.5入门
146817 学习 · 657 问题
相似问题