课程章节: 第4章 组件库起航 - 你真的能写的好看起来简单的 Button 组件吗?
主讲老师:张轩
课程内容:
今天学习的内容包括:
4-10 升级 Button 组件样式
4-11 精益求精 - Buton 组件编码第二部分
课程收获:
@mixin可以用来复用一下相同的属性。
a组件中
使用的时候 用@include关键字。传入。
利用scss的内置函数。lighten。让颜色变浅。
| 并集 & 交集
type Env1 = 'prod' | 'test' | 'dev';
type Env2 = 'prod' | 'boe' | 'ppe';
type EnvUnion = Env1 | Env2; // 'prod' | 'test' | 'dev' | 'boe' | 'ppe'
type EnvInter = Env1 & Env2; // 'prod'
>*{pointer-events:none}
lighten(color,7.5%)
联合类型 交叉类型buttonhtmlattributes
N
a链接的属性ancherhtmlattributes
partial 把所有属性都变成可选的