UNPKG

@varlet/ui

Version:

A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.

9 lines (8 loc) 260 B
import { convert } from "./convert.mjs"; function toRem(theme, options = {}) { const { rootFontSize = 16, unitPrecision = 6 } = options; return convert(theme, (value) => `${Number((value / rootFontSize).toFixed(unitPrecision))}rem`); } export { toRem };