为了账号安全,请及时绑定邮箱和手机立即绑定

为什么无论我在input框里输什么提交都显示空的?

<template>

<div>

<div>

<h1>Todolist</h1>

<br />

<input v-model="inputvelue" />

<button @click="handleClick" :key="index" :content="item" :index="index" @delete="handledelete">提交</button>

</div>

<ul>

<todo-item v-for="(item, index) of list ">


</todo-item>

</ul>

</div>

</template>


<script>

import todo from './components/todo.vue'


export default {

components: {

'todo-item': todo

},

data: function() {

return {

inputvelue: '',

list: []

}

},

methods: {

handleClick() {

this.list.push(this.inputvelue)

this.inputvelue = ''

},

handledelete(index) {

this.list.splice(index, 1)

}

}

}

</script>


<style>


</style>










<template>

<li @click="handledelete">{{comtent}}</li>

</template>


<script>

export default {

props: ['content', 'index'],

methods: {

handledelete() {

this.$emit('delete', this.index)

}

}

}

</script>


<style scoped>


</style>




下面是子组件

正在回答

1 回答

已解决

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么无论我在input框里输什么提交都显示空的?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信