文件名称:preact-cycle:使用Preact的功能最少的虚拟DOM呈现
文件大小:8KB
文件格式:ZIP
更新时间:2024-05-22 12:22:55
preact preact-components JavaScript
事前周期 使用最小功能(React性)虚拟DOM呈现。 简单的例子 import { render , h } from 'preact-cycle' ; /** @jsx h */ const App = ( { value , mutation } ) => ( < div> < p> Value: { value } < / p > < button onClick = { mutation ( 'value' , v => v + 1 ) } > Increment < / button > < / div > ) ; render ( App , { value : 0 } ) ; 待办事项清单示例 一个简单的例子,其中约简只是纯函数。 请注意, TOGGLE原位改变状态,这种方法可以正常工作,但不建议使用。 import { render , h
【文件预览】:
preact-cycle-master
----.eslintrc(1KB)
----rollup.config.js(306B)
----src()
--------create-cycle.js(937B)
--------contextualize.js(295B)
--------index.js(528B)
----.npmignore(10B)
----.travis.yml(33B)
----LICENSE(1KB)
----test()
--------index.js(276B)
----README.md(4KB)
----.editorconfig(236B)
----.gitignore(45B)
----.eslintignore(5B)
----package.json(2KB)