作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 styled-component 中,您如何决定是应该使用插值函数来修改组件(通过传递 props )还是扩展现有组件。例如:
const Button = styled.button`
color: palevioletred;
font-size: 1em;
margin: 1em;
padding: 0.25em 1em;
border: 2px solid palevioletred;
border-radius: 3px;
`;
// We're extending Button with some extra styles
const TomatoButton = Button.extend`
color: tomato;
border-color: tomato;
`;
render(
<div>
<Button>Normal Button</Button>
<TomatoButton>Tomato Button</TomatoButton>
</div>
);
我们也可以使用插值函数。您如何在两者之间做出选择?
最佳答案
不同的是,通过传递 props 我们可以在其他情况下使用它,但是如果使用 extends 我们只是将它用作新组件的额外样式,例如继承。示例:对于导航菜单,如果有事件菜单,则不需要使用扩展。只需使用 props 的事件类即可。因此您无需扩展或制作新组件。
关于css - Styled-components:插值函数或 component.extend?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47109479/
我是一名优秀的程序员,十分优秀!