码迷,mamicode.com
首页 > 其他好文 > 详细

vue中组件的使用

时间:2018-07-16 19:34:42      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:tps   his   utf-8   简单   style   例子   对象   提交   .com   

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中组件的使用

标签:tps   his   utf-8   简单   style   例子   对象   提交   .com   

原文地址:https://www.cnblogs.com/soul-wonder/p/9319357.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!