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

点击提交按钮,页面没有反应

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>TodoList</title>

    <script src="./vue.js"></script>

</head>

<body>

    <div id="root">

       <div>

           <input v-model="inputValue"/>

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

       </div>

       <ul>

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

           :key= "index"

           :content="item">

        </todo-item>

       </ul>

    </div>


    <script>

        // 全局组件

            Vue.component('todo-item',{

                props:['content'],

                template:'<li>{{content}}</li>'

            })


        // var TodoItem = {

        //     template: '<li>item</li>'

        // }



        new Vue({

            el:"#root", 

            components:{

                'todo-item':TodoItem

            },

            data:{

                inputValue:'',

                list: []

            },

            methods:{

                handleSubmit: function(){

                    this.list.push(this.inputValue)

                    this.inputValue=''

                }

            }

        })

    </script>

</body>

</html>


正在回答

2 回答

调试下呗,chrome f12 打开控制台就知道问题了

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

我找到问题了。。components那里应该删掉  对不起 我不知道 咋删问题???

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

举报

0/150
提交
取消

点击提交按钮,页面没有反应

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