11、VUE混合

 

1、混合的概念(mixture

混合是以一种灵活的方式,为组件提供代码复用功能。(类似于封装)

混合对象可以包含任意的组件选项。当组件使用了混合对象时,混合对象的所有选项将被“混入”组件自己的选项中。

 

2、混合的例子

    使用混合实现Modal窗口。

 

 

 

 

 

 

 

html{
    width:100%;
    height:100%;
}
body{
    width:inherit;
    height:inherit; /*继承父控件的高度 */
    margin: 0;
    padding: 0;
}
.modal{
    width:500px;
    height:300px;
    display: none;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}
.shade{
    background-color: rgba(0,0,0,0.7);
    width:100%;
    height:100%;
    position: absolute;  /*位移 */
    top:0;
    left: 0;
    z-index: 999;
    display: flex;  /*使用弹性布局 */
    justify-content: center;
    align-content: center;
}

 

3、混合和构造器继承的区别

 

4、混合和引用的区别

 

 

posted on   拭不去の泪痕  阅读(296)  评论(0编辑  收藏  举报

编辑推荐:
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 《HelloGitHub》第 106 期
· 数据库服务器 SQL Server 版本升级公告
· C#/.NET/.NET Core技术前沿周刊 | 第 23 期(2025年1.20-1.26)

导航

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示