UNPKG

balm-ui

Version:

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

18 lines (13 loc) 352 B
import configure from './configure'; const bootstrap = (Component) => { const UiComponent = { install(app, options = {}) { // Configure the component's props configure(Component, options); // Install the component app.component(Component.name, Component); } }; return UiComponent; }; export default bootstrap;