【Vue】Vue组件--上

news/2025/1/16 3:50:42 标签: vue.js, 前端, javascript

目录

一、组件基础

二、组件的嵌套关系

1. 基础架构

2. 嵌套 

三、组件注册方式

1. 局部注册:

2. 全局注册:

四、组件传递数据

1. 基础架构

2. 传递多值

3.  动态传递数据

五、组件传递多种数据类型

1. Number

2. Array

3. Object

六、组件传递Props的校验

 1. 默认值

2. 必选项


一、组件基础

        组件最大的优势就是可复用性

        当使用构建步骤时,我们一般将vue组件定义在一个单独的.vue文件当中,这就被叫做单文件组织(SFC)

         组件组成结构 ----> 在components文件当中新建文件MyApp.vue

<template>
    <div class="container">{{ message }}</div>
</template>
<script>
    export default{
        data(){
            return{
                message:'组件基础组成'
            }
        }
    }
</script>
<!-- 让当前样式只在当前组件中生效 ,如果不加scoped那么.container将会是全局样式在任何组件当中使用-->
<style scoped>
    .container{
        font-size: 30px;
        color: red;
    }
</style>

        组件引用结构-----在App.vue当中设置如下属性:

<script>
   //第一步引入组件
   import MyApp  from './components/MyApp.vue';

   export default{
        //第二步:注册组件
        components:{
            MyApp
        }
   }
</script>
<template>
    <!--第三步:显示组件-->
    <MyApp/>
</template>


二、组件的嵌套关系

 

        组件允许我们将UI划分为独立的、可重用的部分,并且可以对每个部分进行单独的思考。在实际应用中,组件常常被组织成层层嵌套的树状结构

        这和我们嵌套HTML元素的方式类似,Vue实现了自己的组件模型,使我们可以在每个组件内封装自定义内容与逻辑。

        新建pages文件夹,并创建以下文件‘

1. 基础架构

Header.vue

<template>
    <h3>Header</h3>
</template>
<style scoped>
    h3{
        width: 100%;
        height: 120px;
        border: 4px solid #333;
        text-align: center;
        line-height: 100px;
        box-sizing: border-box;
    }
</style>

在App.vue当中注册

<script>
  import Header from './components/Header.vue';
  export default{
    data(){

    },
    components:{
      Header
    }
  }
</script>
<template>
  <Header/>
</template>

 Main.vue:

<template>
    <div class="main">
        <h4>Main</h4>
    </div>
    
</template>

<style scoped>
    .main{
        float: left;
        width: 60%;
        height: 400px;
        border: 4px solid #333;
        text-align: center;
        line-height: 100px;
        box-sizing: border-box;
    }
    .main h4{
        text-align: center;
        background-color: beige;
    }
</style>

 Aside.vue:

<template>
    <div class="aside">
        <h4>Aside</h4>
    </div>
    
</template>

<style scoped> 
    .aside{
        float: right;
        width: 30%;
        height: 400px;
        border: 4px solid #333;
        text-align: center;
        line-height: 100px;
        box-sizing: border-box;
    }
</style>

2. 嵌套 

新建Article.vue:

<template>
    <h5>Article</h5>
</template>
<style>
    h5{
        width:80%;
        margin:0 auto;
        text-align: center;
        line-height: 50px;
        box-sizing: border-box;
        margin-top: 20px;
        background:#999;
    }
</style>

main.vue里引用article.vue

<template>
    <div class="main">
        <h4>Main</h4>
        <Article/>
        <Article/>
    </div>
    
</template>
<script>
    import Article from './Article.vue';
    export default{
        components:{
            Article
        }
    }
</script>
<style scoped>
    .main{
        float: left;
        width: 60%;
        height: 400px;
        border: 4px solid #333;
        text-align: center;
        line-height: 100px;
        box-sizing: border-box;
    }
    .main h4{
        text-align: center;
        background-color: beige;
    }
</style>

新建item.vue:

<template>
    <h5>Item</h5>
</template>
<style scoped>
    h5{
        width:80%;
        margin: 0 auto;
        text-align: center;
        line-height: 100px;
        box-sizing: border-box;
        margin-top: 10px;
        background:#999;
    }   
</style>

aside.vue里引用item.vue:

<template>
    <div class="aside">
        <h4>Aside</h4>
        <Item/>
        <Item/>
    </div>
    
</template>
<script>
    import Item from './Item.vue';
    export default{
        components:{
            Item
        }
    }
</script>
<style scoped> 
    .aside{
        float: right;
        width: 30%;
        height: 400px;
        border: 4px solid #333;
        text-align: center;
        line-height: 100px;
        box-sizing: border-box;
    }
</style>

最终效果:


三、组件注册方式

        一个Vue组件在使用前需要先被“注册”,这样Vue才能在渲染模板时找到其对应的实现。组件注册有两种方式:全局注册和局部注册

1. 局部注册

        前边讲的方案就是局部注册

2. 全局注册

我们这里使用Header.vue来进行全局注册,

:那么首先在App.vue当中取消局部注册。

:在main.js当中设置全局注册方式

:最终在哪里需要就在哪里引入

全局注册虽然很方便,但有以下几个问题

        1.全局注册,但并没有被使用的组件无法在生产打包时被自动移除(也叫“tree-shaking”)。如果你全局注册了一个组件,即使它并没有被实际使用,它仍然会出现在打包后的JS文件中

        2.全局注册在大型项目中使项目的依赖关系变得不那么明确。在父组件中使用子组件时,不太容易定位子组件的实现。和使用过多的全局变量一样,这可能会影响应用长期的可维护性

局部注册需要使用components选项。


四、组件传递数据

        组件与组件之间不是完全独立的,而是有交集的,那就是组件与组件之间是可以传递数据的传递数据的解决方案就是props

1. 基础架构

        首先我们新建一个Parent.vue

<template>
    <h3>Parent</h3>
</template>
<script>
    export default{
        data(){
            return{
            }
        } 
    }
</script>

其次我们再新建Child.vue

<template>
    <h3>Child</h3>
</template>
<script>
    export default{
        data(){
            return{
            }
        }
    }
</script>

我们让Parent.vue给Child.vue传值,不过在此之前我们先让Parent成为Child的父组件。

 

2. 传递多值

也可以传递多个值

 

3.  动态传递数据

 

注意事项:

        props 传递数据,只能从父级传递到子级,不能反其道而行


五、组件传递多种数据类型

        通过props传递数据,不仅可以传递字符串类型的数据,还可以是其他类型,例如:数字、对象、数组等。但实际上任何类型的值都可以作为props的值被传递。

1. Number

parent.vue:

<template>
    <h3>Parent</h3>
    <Child :title="message" :age="age"></Child>
</template>
<script>
    import Child from './Child.vue'
    export default{
        data(){
            return{
                message:"我是动态的数据!!!",
                age:20
            }
        },
        components:{
            Child
        }
    }
</script>

Child.vue:

<template>
    <h3>Child</h3>
    <p>{{ title }}</p>
    <p>{{ age }}</p>
</template>
<script>
    export default{
        data(){
            return{

            }
        },
        props:["title","age"]
    }
</script>

2. Array

parent.vue:

<template>
    <h3>Parent</h3>
    <Child :title="message" :age="age" :names="names"></Child>
</template>
<script>
    import Child from './Child.vue'
    export default{
        data(){
            return{
                message:"我是动态的数据!!!",
                age:20,
                names:["张三","李四","王五"]
            }
        },
        components:{
            Child
        }
    }
</script>

child.vue:

<template>
    <h3>Child</h3>
    <p>{{ title }}</p>
    <p>{{ age }}</p>
    <ul>
        <li v-for="(item,index) of names" :key="index">{{ item }}</li>
    </ul>
</template>
<script>
    export default{
        data(){
            return{

            }
        },
        props:["title","age","names"]
    }
</script>

3. Object

parent.vue:

<template>
    <h3>Parent</h3>
    <Child :title="message" :age="age" :names="names" :userInfo="userInfo"></Child>
</template>
<script>
    import Child from './Child.vue'
    export default{
        data(){
            return{
                message:"我是动态的数据!!!",
                age:20,
                names:["张三","李四","王五"],
                userInfo:{
                    name:"admin",
                    age:20
                }
            }
        },
        components:{
            Child
        }
    }
</script>

child.vue:

<template>
    <h3>Child</h3>
    <p>{{ title }}</p>
    <p>{{ age }}</p>
    <ul>
        <li v-for="(item,index) of names" :key="index">{{ item }}</li>
    </ul>
    <p>{{ userInfo.name }}</p>
    <p>{{ userInfo.age }}</p>
</template>
<script>
    export default{
        data(){
            return{

            }
        },
        props:["title","age","names","userInfo"]
    }
</script>


六、组件传递Props的校验

        Vue组件可以更细致地声明对传入的props的校验要求。

以下例子为接收  String  类型传输  number  控制台警告:

<script>
import ComponentB from './ComponentB.vue';
export default{
    data(){
    return{
      title:20
    }
  },
    components:{
      ComponentB
    }
}
</script>
<style>
</style>
<template>
    <h3>ComponentA</h3>
    <ComponentB :title="title"/>
  </template>
<template>
    <h3>ComponentB</h3>
    <p>{{ title }}</p>
</template>
<script>
export default{
    data(){
        return{
           
        }
    },
    props:{
        title:{
            type:String
        }
    }
}
</script>

 

 可以接收多种类型

props:{
   title:{
       type:[String,Number,Array,Object]
   }
}

 1. 默认值

        模拟情况:传递数据的时候并没有真实传递。

         数字和字符串可以直接default,但是如果是数组和对象,必须通过工厂函数返回默认值。

 

<template>
    <h3>ComponentA</h3>
    <ComponentB :title="title" :age="age" :names="names"/>
</template>

<script>

import ComponentB from './ComponentB.vue';

export default{
    data(){
        return{
            title:"测试",
            //age:20,
            //names:["Tom","Bob"]
        }
    },
    components:{
        ComponentB
    }
}
</script>
________________________________________________________________________________
<template>
    <h3>ComponentB</h3>
    <p>{{ title }}</p>
    <p>{{ age }}</p>
    <ul>
        <li v-for="(name,index) of names" :key="index">{{ name }}</li>
    </ul>
</template>

<script>
export default{
    data(){
        return{

        }
    },
    props:{
        title:{
            type:[String,Number,Array,Object]
        },
        age:{
            type:Number,
            default:0
        },
        //数字和字符串可以直接default,但是如果是数组和对象,必须通过工厂函数返回默认值
        names:{
            type:Array,
            default(){
                return ["xxx"]
            }
        }
    }
}
</script>

2. 必选项

        没有传值就会提示警告。

 

<template>
  <h3>ComponentA</h3>
  <ComponentB :title="title" :age="age" :names="names"/>
</template>

<script>

import ComponentB from './ComponentB.vue';

export default{
  data(){
      return{
          // title:"测试",
          age:20,
          names:["Tom","Bob"]
      }
  },
  components:{
      ComponentB
  }
}
</script>
<template>
    <h3>ComponentB</h3>
    <p>{{ title }}</p>
    <p>{{ age }}</p>
    <ul>
        <li v-for="(name,index) of names" :key="index">{{ name }}</li>
    </ul>
</template>

<script>
export default{
    data(){
        return{

        }
    },
    props:{
        title:{
            type:[String,Number,Array,Object],
            required:true
        },
        age:{
            type:Number,
            default:0
        },
        //数字和字符串可以直接default,但是如果是数组和对象,必须通过工厂函数返回默认值
        names:{
            type:Array,
            default(){
                return ["xxx"]
            }
        }
    }
}
</script>

注意:

        props 是只读的,不允许修改父元素传递过来的数据。

<template>
    <h3>ComponentB</h3>
    <p>{{ title }}</p>
    <p>{{ age }}</p>
    <ul>
        <li v-for="(name,index) of names" :key="index">{{ name }}</li>
    </ul>
    <button @click="update">update</button>
</template>

<script>
export default{
    data(){
        return{

        }
    },
    props:{
        title:{
            type:[String,Number,Array,Object],
            required:true
        },
        age:{
            type:Number,
            default:0
        },
        //数字和字符串可以直接default,但是如果是数组和对象,必须通过工厂函数返回默认值
        names:{
            type:Array,
            default(){
                return ["xxx"]
            }
        }
    },
    methods:{
        update(){
            console.log(this.title);
            this.title="新数据"
        }
    }
}
</script>


http://www.niftyadmin.cn/n/5824614.html

相关文章

使用 versions-maven-plugin 和 flatten-maven-plugin 插件惯例 maven 项目版本

在 Maven 项目中&#xff0c;依赖版本管理和 POM 文件的规范化是确保项目可维护性和一致性的关键。今天&#xff0c;我们将介绍两个强大的 Maven 插件&#xff1a;versions-maven-plugin 和 flatten-maven-plugin&#xff0c;它们可以帮助我们更高效地管理项目版本和 POM 文件。…

计算机网络 (35)TCP报文段的首部格式

前言 计算机网络中的TCP&#xff08;传输控制协议&#xff09;报文段的首部格式是TCP协议的核心组成部分&#xff0c;它包含了控制TCP连接的各种信息和参数。 一、TCP报文段的结构 TCP报文段由首部和数据两部分组成。其中&#xff0c;首部包含了控制TCP连接的各种字段&#xff…

JavaScript系列(25)--性能优化技术详解

JavaScript性能优化技术详解 ⚡ 今天&#xff0c;让我们深入探讨JavaScript的性能优化技术。掌握这些技术对于构建高性能的JavaScript应用至关重要。 性能优化基础 &#x1f31f; &#x1f4a1; 小知识&#xff1a;JavaScript性能优化涉及多个方面&#xff0c;包括代码执行效…

学习软件工程产品质量模型

在软件工程领域&#xff0c;产品质量模型是确保软件产品满足用户需求、具备良好性能和可靠性的重要工具。通过对产品质量模型的深入学习和理解&#xff0c;软件开发者能够设计出高质量的软件产品&#xff0c;提升用户体验&#xff0c;增强市场竞争力。本文将详细介绍软件工程产…

OpenCV实现多尺度细节提升算法

1、算法原理 多尺度细节提升算法来源于论文*《DARK IMAGE ENHANCEMENT BASED ON PAIRWISE TARGET CONTRAST AND MULTI-SCALE DETAIL BOOSTING》*&#xff0c;算法主要是解决细节增强算法中噪声和细节的平衡问题。 常规的非锐化掩蔽&#xff08;USM&#xff09;算法在提升细节…

基于SpringBoot的物业管理系统

作者&#xff1a;计算机学姐 开发技术&#xff1a;SpringBoot、SSM、Vue、MySQL、JSP、ElementUI、Python、小程序等&#xff0c;“文末源码”。 专栏推荐&#xff1a;前后端分离项目源码、SpringBoot项目源码、Vue项目源码、SSM项目源码、微信小程序源码 精品专栏&#xff1a;…

【Linux】8.Linux基础开发工具使用(2)

文章目录 1. Linux编译器-gcc/g使用关于sudo1.1 背景知识1.2 gcc如何完成1.2.1 预处理(进行宏替换)1.2.2 编译&#xff08;生成汇编&#xff09;1.2.3 汇编&#xff08;生成机器可识别代码&#xff09;1.2.4 连接&#xff08;生成可执行文件或库文件&#xff09;1.2.5 总结 1.3…

爬虫逆向学习(十五):Akamai 3.0反爬分析与sensor-data算法逆向经验

此分享只用于学习用途&#xff0c;不作商业用途&#xff0c;若有冒犯&#xff0c;请联系处理 Akamai 3.0反爬分析与sensor-data算法逆向经验 Akamai开始正题前须知站点信息接口分析反爬点反爬点定位_abck定位结果 逆向前准备工作sensor_data生成位置本地替换文件 请求体sensor…