vue中组件的使用

Posted soul-wonder

tags:

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

1.组件拆分

对上一个例子中的todolist,进行组件的拆分

Vue.component( id, [definition] )

props

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>组件拆分</title>
    <script src="vue.js"></script>
</head>
<body>
<div id="app">
    <div>
        <input type="text" v-model="inputValue">
        <button @click="putList">提交</button>
    </div>
    <ul>
        <todo-item
                v-for="(ls,index) in list"
                :key="index"
                :content="ls"
        >
        <!--在标签中定义了content属性来传递参数给模板组件,在组件中通过props定义[‘content‘]来接受属性-->
        </todo-item>
    </ul>

</div>
<script>

    //1.定义全局组件
    /*
    * Vue.component( id, [definition] )
    * */
    Vue.component(todo-item, {
        props:[content],//props 可以是数组或对象,用于接收来自父组件的数据。props 可以是简单的数组,或者使用对象作为替代,对象允许配置高级选项,如类型检测、自定义校验和设置默认值。
        template: <li>{{content}}</li>
    });

    //2.局部组件,在vue实例中声明components来注册指定局部组件
    // var TodoItem = {
    //     template: ‘<li>item</li>‘
    // };

    new Vue({
        el: "#app",
        // components:{
        //     ‘todo-item‘: TodoItem
        // },
        data: {//数据项
            inputValue: "",
            list: []
        },
        methods: {
            putList: function () {
                this.list.push(this.inputValue);
                this.inputValue = "";
            }
        }
    });
</script>
</body>
</html>

 

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

vscode代码片段生成vue模板

vue3中的fragment(片段)组件

vue递归组件的一些理解

Vue_(组件通讯)使用solt分发内容

Vue组件之全局组件与局部组件

Vue组件之全局组件与局部组件