vue局部组件

Posted tuziling

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue局部组件相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <script src="./vuev2.5.21.js"></script>
</head>
<body>
    <div id="app">
            <input type="text" v-model="inputValue">
            <button @click="BtnClick">提交</button>
            <ul>
                <!-- <li v-for="item in list">{{item}}</li> -->
                <todo-item v-bind:content="item"  v-for="item in list"></todo-item>

            </ul>
    </div>
    <script>
        // Vue.component("TodoItem",{
        //     props:["content"],
        //     template:"<li>{{content}}</li>"
        // });
        var todoItem={
            props:["content"],
            template:"<li>{{content}}</li>"
        };
        var app= new Vue({
            el:"#app",
            components:{
                TodoItem:todoItem
            },
            data:{
                inputValue:"",
                list:[],
            },
            methods:{
                BtnClick:function(){
                //   console.log(this.list);
                this.list.push(this.inputValue);
                this.inputValue=""; 
                }
            }
        })
    </script>
    
</body>
</html>

 

以上是关于vue局部组件的主要内容,如果未能解决你的问题,请参考以下文章

Vue学习-组件的基本使用(局部组件)

vue.js中的全局组件和局部组件

Vue 教程(十六)局部组件

vue.js 组件-全局组件和局部组件

Vue全局组件与局部组件

vue中注册组件