UNPKG

balm-ui

Version:

A modular and customizable UI library based on Material Design and Vue 3

15 lines (10 loc) 228 B
function createDiv(id) { const el = document.createElement('div'); el.id = id; document.body.appendChild(el); return el; } function removeDiv(el) { document.body.removeChild(el); } export { createDiv, removeDiv };