文件名称:js-bemto:在js中创建bem样式类名称的简单而优雅的方法
文件大小:7KB
文件格式:ZIP
更新时间:2024-05-20 13:03:42
bem css-classes JavaScript
JS-BEMTO 在js中编写bem类的非常简单而优雅的方法。 import bem from 'js-bemto' ; const isActive = false ; const isBright = true ; const b = bem ( `tile--big.--active? ${ isActive } .--bright? ${ isBright } ` ) ; const e = b ; assert . equal ( b ( ) , 'tile tile--big tile--bright' ) ; assert . equal ( e ( 'logo--active.col-xs-2' ) , 'tile__logo tile__logo--active col-xs-2' ) ; 目录 安装 这是一个常见的npm模块。 既适用节点和浏览器(类似的工具和 )
【文件预览】:
js-bemto-master
----.eslintrc(309B)
----src()
--------index.js(5KB)
----.travis.yml(138B)
----test()
--------test_bemto.js(3KB)
--------mocha.opts(39B)
----README.md(5KB)
----.gitignore(26B)
----package.json(1KB)