1.0.1 • Published 4 months ago

@laniakeasupercluster/widgets v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
4 months ago

widgets

像 flutter 风格用纯粹 js 构建页面

npm i @laniakeasupercluster/widgets
import { createElement, Button, Span } from '@laniakeasupercluster/widgets'

document.body.appendChild(createElement({
    style: { width: 320, height: 320, padding: 64 },
    children: [
        Span({ textContent: 'hello world!' })
        Button({
            textContent: 'click',
            onclick: event => {
                const randomNumber = Math.floor(Math.random() * 100)
                event.traget.textContent = 'click' + randomNumber
            }
        })
    ]
}))

dev

git clone git@git.satori.love:LaniakeaSupercluster/widgets.git
npm i
npm run dev
1.0.1

4 months ago

1.0.0

4 months ago