/cherry-dom

Primary LanguageTypeScriptMIT LicenseMIT

Cherry DOM

封装一些浏览器端常用的 API。

文档

English | 简体中文

安装

pnpm install carob

使用

import { prepend, toElement, getScrollbarWidth } from 'carob'

const app = toElement(`
  <div class="app">
    <button id="button">Hi</button>
  </div>
`)

prepend(document.body, app)

getScrollbarWidth() // => 17px