为什么在vscode 就是运行不了,代码没有提示任何问题啊
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 就是运行不了,代码没有提示任何问题