其他分享
首页 > 其他分享> > 通俗易懂--快速入门Vue--1

通俗易懂--快速入门Vue--1

作者:互联网

项目组件化

1.全局组件

    Vue.component('todo-item',{
        props:['content'],
        template:"<li>{{content}}</li>"
    });

2.局部组件

var TodoItem = {
      props:['content'],
      template:"<li>{{content}}</li>"
    };
// 在实例中进行注册
var vm = new Vue({
    el:"#app",
    // 局部组件注册
        components:{
            TodoItem:TodoItem
        },
})

3父组件向子组件传值

4子组件向父组件传值

// 子组件绑定要触发事件 @click='handelItemClick'
handelItemClick:function () {
                this.$emit('delete',this.index)
          }
//通过$emit触发事件,并传值。


//父组件在标签上监听该delete事件,并绑定处理方法
@delete="handelItemDelete"

//父组件定义handelItemDelete,将传来的数据,在当前实例中修改
handelItemDelete:function (indexvalue) {
            this.list.splice(indexvalue,1)
}

5一个Todolist的组件

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<script src="./vue.js"></script>
<body>
<div id="app">
    <input type="text" v-model="inputValue">
    <button @click="handlebtnClisk">提交</button>
    <ul>
        <todo-item v-for="(item,index) in list"
                   v-bind:index="index"
                   v-bind:content="item"
                   @delete="handelItemDelete"

        >{{item}}</todo-item>
    </ul>
</div>
</body>
<script>
    // 全局组件
    // Vue.component('todo-item',{
    //     props:['content'],
    //     template:"<li>{{content}}</li>"
    // });
    // 局部组件
    var TodoItem = {
      props:['content','index'],
      template:"<li @click='handelItemClick'>{{content}}</li>",
      methods:{
          handelItemClick:function () {
                this.$emit('delete',this.index)
          }
      }
    };




    var vm = new Vue({
        // el限制一个vue实例的管理范围。
        el:"#app",
        // 局部组件注册
        components:{
            TodoItem:TodoItem
        },
        data:{
            list:[],
            inputValue:""
        },
        methods:{
            handlebtnClisk:function () {
                this.list.push(this.inputValue);
                this.inputValue = ""
            },
            handelItemDelete:function (indexvalue) {
                this.list.splice(indexvalue,1)
            }
        }
    });

</script>
</html>

标签:function,Vue,入门,通俗易懂,content,props,组件,TodoItem
来源: https://www.cnblogs.com/xujunkai/p/12229974.html