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

来源:4-2 使用vue-cli开发TodoList

慕雪6264854

2022-07-14 15:22

<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>


写回答 关注

1回答

  • weixin_慕前端9253804
    2022-07-28 11:51:12
    import TodoItem from './components/HelloWorld'

    应该放在  

    export default {

     之前

vue2.5入门

快速理解Vue编程理念上手Vue2.0开发。

146742 学习 · 657 问题

查看课程

相似问题