VUE 组件

5 篇文章 0 订阅

一、组件介绍

1.减少代码量

2.代码复用

二、组件注册

1. 全局注册

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <div id="root">
    <input type="text" v-model:"inputValue">
    <button @click:"handleBtnClick"></button>
    <ul>
        <todo-item v-bind:content:"item"
                   v-for:"item in list"></todo-item>
    </ul>
    </div>
</body>
//kebab-case:短横线分隔命名
//pascal-case:驼峰式命名
//component不能在html中写驼峰式命名,会报错,如果component里用了驼峰式命名,在html中改成短横线命名
<script type = text/javascript>
//1.全局注册
    Vue.component('todoItem',{
        template:'<li>hello world</li>'
    }) 
    var vm = new Vue({
        el:'#root',
        data:{
            list:[],
            inputValue:''
        },
        method:{
            handleBtnClick(){
                this.list.push(this.inputValue);
            }
        }
    })
</script>
</html>

component不能在html中写驼峰式命名,会报错,如果component里用了驼峰式命名,在html中改成短横线命名

1.1组件静态传值

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
    <div id="root">
    <input type="text" v-model:"inputValue">
    <button @click:"handleBtnClick"></button>
    <ul>
        <!--1. 静态传值-->
        <todo-item test:"hellobilibili"></todo-item>
    </ul>
    </div>
</body>

<script type = text/javascript>
//1.全局注册
//定义的子组件 todoItem
    Vue.component('todoItem',{
        props:['test'],//在这里接收属性
        template:'<li>{{test}}</li>'
    }) 
//root这个是父组件,表示当前vue对象接管了该div区域
    var vm = new Vue({
        el:'#root',
        data:{
            list:[],
            inputValue:''
        },
        method:{
            handleBtnClick(){
                this.list.push(this.inputValue);
            }
        }
    })
</script>
</html>

1.2 动态传值

v-bind双向绑定变量

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
    <div id="root">
    <input type="text" v-model:"inputValue">
    <button @click:"handleBtnClick"></button>
    <ul>
        <!--1. 静态传值-->
        <!--
            <todo-item test:"hellobilibili"></todo-item>
        -->
        <!--2. 动态传值-->
        <todo-item v-bind:content:"item"
                   v-for:"item in list"></todo-item>
    </ul>
    </div>
</body>

<script type = text/javascript>
//1.全局注册
//定义的子组件 todoItem
    Vue.component('todoItem',{
        props:['content'],//在这里接收属性
        template:'<li>{{content}}</li>'
    }) 
//root这个是父组件,表示当前vue对象接管了该div区域
    var vm = new Vue({
        el:'#root',
        data:{
            list:[],
            inputValue:''
        },
        method:{
            handleBtnClick(){
                this.list.push(this.inputValue);
            }
        }
    })
</script>
</html>

2 局部注册

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
    <div id="root">
    <input type="text" v-model:"inputValue">
    <button @click:"handleBtnClick"></button>
    <ul>
        <!--1. 静态传值-->
        <!--
            <todo-item test:"hellobilibili"></todo-item>
        -->
        <!--2. 动态传值-->
        <todo-item v-bind:content:"item"
                   v-for:"item in list"></todo-item>
    </ul>
    </div>
</body>

<script type = text/javascript>
//2.局部注册:Javascript对象注册
    var TodoItem={
        props:['content'],
        template:'<li>{{content}}</li>
    }

    var vm = new Vue({
        el:'#root',
        components:{//在这里注册局部组件
            'todo-item':TodoItem//todo-item是注册的组件名,TodoItem是js对象名
        },
        data:{
            list:[],
            inputValue:''
        },
        method:{
            handleBtnClick(){
                this.list.push(this.inputValue);
            }
        }
    })
</script>
</html>

3 点击删除

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
    <div id="root">
    <input type="text" v-model:"inputValue">
    <button @click:"handleBtnClick"></button>
    <ul>
        <!--1. 静态传值-->
        <!--
            <todo-item test:"hellobilibili"></todo-item>
        -->
        <!--2. 动态传值-->
        <todo-item v-bind:content:"item"
                   v-bind:index:"index"
                   v-for:"(item,index) in list"></todo-item>
    </ul>
    </div>
</body>

<script type = text/javascript>
//2.局部注册:Javascript对象注册
    var TodoItem={
        props:['content','index'],
        template:'<li>{{content}}--{{index}}</li>
    }

    var vm = new Vue({
        el:'#root',
        components:{
            'todo-item':TodoItem
        },
        data:{
            list:[],
            inputValue:''
        },
        method:{
            handleBtnClick(){
                this.list.push(this.inputValue);
            }
        }
    })
</script>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值