UNPKG

wx-svelte-toolbar

Version:

Svelte toolbar component. Lightweight, customizable, easy-to-use.

8 lines (7 loc) 176 B
const handlers = {}; export function getItemHandler(type) { return handlers[type] || type; } export function registerToolbarItem(type, handler) { handlers[type] = handler; }