1.安装
npm install --save styled-components
2.简单使用
style.js:
import styled from 'styled-components'; import { injectGlobal } from 'styled-components' export const NavSearch = styled.input.attrs({ placeholder: '搜索' })` 160px; height: 38px; &::placeholder { color: #999; } `; //全局样式 injectGlobal ` body { margin: 0; padding: 0; font-family: sans-serif; } `
组件里:
<StyledView> <StyledText> Hello Marno! </StyledText> </StyledView>