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

这个函数为啥没法使用

<template>
  <div>
    <input type="text" v-model="inputValue">
    <button @click="addItem">提交</button>
    <ul>
      <li v-for="(item, index) in itemList" :key="index">
        <button @click="removeItem(index)">delete</button>
        {{item}}
      </li>
    </ul>
  </div>
</template>

<script>
  export default {
    data () {
      return {
        inputValue: '',
        itemList: []
      }
    },
    methods: {
      addItem () {
        if (this.inputValue != null && this.inputValue != '') {
          this.itemList.push(this.inputValue)
          this.inputValue = ''
        }
      },
      removeItem (index) {
        // 这里报错
        this.inputValue.splice(index, 1)
      }
    }
  }
</script>

<style>

</style>


正在回答

1 回答

https://img1.sycdn.imooc.com//5c76881c00019e3a04880273.jpg这个地方写错了

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

举报

0/150
提交
取消

这个函数为啥没法使用

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