文件名称:babel-plugin-object-styles-to-template:Babel插件,用于将对象样式转换为模板文字
文件大小:112KB
文件格式:ZIP
更新时间:2024-02-20 20:36:53
babel styled-components babel-plugin linaria BabelJavaScript
babel-plugin-object-styles-to-template Babel插件,可将对象样式转换为模板文字。 该插件会将以对象语法编写的样式转换为带标签的模板文字,如和带类的库可以使用。 用法 安装插件: yarn add --dev babel-plugin-object-styles-to-template 然后将其包含在您的.babelrc : { " plugins " : [ " object-styles-to-template " ] } 例 当您编写以下内容时: const container = css ( { flex : 1 , padding : 10 , backgroundColor : 'orange' , color : colors . white , '&:hover' : { backgroundColor : 'tomato' , } , } ) ; 它被转换为: const container = css ` flex : 1 ; padding : 10 px ;
【文件预览】:
babel-plugin-object-styles-to-template-master
----.eslintrc.json(109B)
----.gitignore(896B)
----.flowconfig(58B)
----package.json(1KB)
----index.js(5KB)
----__tests__()
--------index.js(234B)
----.release-it.json(289B)
----__fixtures__()
--------plain-object()
--------nested-styles()
--------computed-properties()
--------styled-member-expression()
--------styled-call-expression()
--------vendor-prefixes()
----README.md(2KB)
----.eslintignore(41B)
----yarn.lock(277KB)