我有一个像这样的样式组件
export const UL = styled.ul`
list-style: none
`
export const Nav = styled.nav`
${UL}: {
margin-top: 40px;
}
background-color: #222;
padding: 0.35em 1.25em;
`
Run Code Online (Sandbox Code Playgroud)
我运行以下命令来添加 babel-plugin-emotion
npm i --save-dev babel-plugin-emotion
Run Code Online (Sandbox Code Playgroud)
我收到这个错误
我还需要做什么才能让插件与情感一起工作?
原来你可以删除模块 babel-plugin-emotion 并使用emotion提供的宏。
使用以下导入
import styled from "@emotion/styled/macro";
Run Code Online (Sandbox Code Playgroud)
就是这样,你很高兴去。
| 归档时间: |
|
| 查看次数: |
1547 次 |
| 最近记录: |