问答详情
源自:4-2 使用vue-cli开发TodoList

import报错,我都还没写完呢,todolist页面报错编译失败指向import

<template>
<div>
  <div>
    <input v-model="inputValue"/>
    <button @click="handlsSubmit">提交</button>
  </div>
  <ul>

  </ul>
</div>
</template>

<script>
export default {
import TodoItem from './components/HelloWorld'
  data: function () {
  components: {
    'todo-item': HelloWorld
  },
    return {
      inputValue: '',
      list: []
    }
  },
  methods: {
    handlsSubmit () {
      this.list.push(this.inputValue)
    }
  }
}
</script>

<style>

</style>


提问者:慕雪6264854 2022-07-14 15:22

个回答

  • weixin_慕前端9253804
    2022-07-28 11:51:12

    import TodoItem from './components/HelloWorld'

    应该放在  

    export default {

     之前