vue 组件的嵌套关系

组件允许我们将 U1划分为独立的、可重用的部分,并且可以对每个部分进行单独的思考。在实际应用中,组件常常被组织成层层嵌套的树状结构
这和我们嵌套 HTML 元素的方式类似,Vue 实现了自己的组件模型,使我们可以在每个组件内封装自定义内容与逻辑

组件及引用关系 

Header

<template>
<h3>Header</h3>
</template>

<script>

</script>

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

Main 

<template>
    <div class="main">
    <h3>Mian</h3>
    <Article />
    <Article />>
</div>
    </template>
    
    <script>
    import Article from "./Article.vue"
    export default{
        components:{
            Article
        }
    }
    </script>
    
    <style scoped>
    .main{
        float: left;
        width: 70%;
        height: 400px;
        border: 5px solid #999;
        box-sizing: border-box;

    } 
    </style>

Aside 

<template>
<div class="aside">
    <h3>Aside</h3>
    <Item />
    <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: 5px solid #999;
        box-sizing: border-box;
    }
    </style>

Article 

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

Item 

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

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值