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

import TodoItem from './components/TodoItem' 昨天写好了,能行,今天打开编译器这行代码报错,页面上啥都没了,命令行项目也运行不了了

<template>

  <div>

  <div>

   <input class="mgs" type="text" v-model="inputValue"/>

   <button @click="aaa">提交</button>

     </div>

   <ui>

   <todo-item

    v-for='(item,index) of list'

    :key='index'

    :content='item'

    :index='index'

    @delete='ccc'

    ></todo-item>

   

   </ui>

   </div>

</template>


<script>

import TodoItem from './components/TodoItem'


export default {

components:{

'todo-item':TodoItem

},

    data(){

    return{

    inputValue:'',

    list:[]

    }

    },

    methods:{

    aaa(){

    this.list.push(this.inputValue)

    this.inputValue=''

    },

    ccc(index){

    this.list.splice(index,1)

    }

    }

  }

</script>


<style>


</style>


正在回答

4 回答

重新启动一下,就好了

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

你先检查一下TodoItem这个组建有没有问题,先查看子组件能否接收到父组件的值

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

你这是在本文件引用本文件?这样是不行的啊。基本上所有的引用其实你可以直接在main.js里就行

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

我也是加上这个就报错

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

举报

0/150
提交
取消

import TodoItem from './components/TodoItem' 昨天写好了,能行,今天打开编译器这行代码报错,页面上啥都没了,命令行项目也运行不了了

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