繁体   English   中英

使用样式化组件创建动态标签

[英]Create dynamic tags with Styled Components

有没有办法使用样式组件创建动态标签? 例如:

const MyComponent = styled(CustomTag)``;

<MyComponent element="h1" />

默认情况下,您可以在使用 styled-components 创建的组件上使用as prop。 如果在您的示例中CustomTag也是一个样式化组件,它设置了原生元素的样式(例如:)

const CustomTag = styled.h1`
  color: red;
`;

那么你可以做

const MyComponent = styled(CustomTag)`
  font-size: 64px;
`;

<MyComponent as="span">Something</MyComponent>

你最终会得到一个font-size为 64px 和红色文本颜色的<span>标签。 当然,您也可以在CustomTag上使用as prop,因此您不一定需要MyComponent

也许这会帮助你:

在你的打字稿中添加你的代码

class Test extends HTMLElement {
    connectedCallback() {
        this.innerHTML = `<h1>Hello World...</h1>`;
        this.style.color = "red";
    }
}

customElements.define('test', Test);

编译后在你的 HTML 中引用 js 文件,你可以像<test></test>一样使用它

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM