Sakura

sakura

博客园 首页 新随笔 联系 订阅 管理
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
    <div id="app">
        <input type="text" v-model="inputValue">
        <button @click="press">press</button>
        <ul>
           <todo-item :content="i" v-for="i in list"></todo-item>
        </ul>
    </div>

    <script>

        Vue.component("TodoItem",{
            props:['content'],
            template:'<li>{{content}}</li>'
        })
        const app = new Vue({
            el:'#app',
            data:{
                list:['第一','第二'],
                inputValue:''
            },
            methods:{
                press: function () {
                    // alert("press")
                    this.list.push(app.$data.inputValue)
                    this.inputValue = ''
                }
            }
        })

       
    </script>

</body>
</html>

 

 

原理:

 

 

 

 

 

posted on 2020-10-28 16:45  .geek  阅读(84)  评论(0编辑  收藏  举报