a reactive (signals based) hypermedia web framework (wip)
stormlightlabs.github.io/volt/
hypermedia
frontend
signals
1---
2version: 1.0
3updated: 2025-10-18
4---
5
6# binder
7
8Binder system for mounting and managing VoltX.js bindings
9
10## mount
11
12Mount VoltX.js on a root element and its descendants and binds all data-volt-* attributes to the provided scope.
13Returns a cleanup function to unmount and dispose all bindings.
14
15```typescript
16export function mount(root: Element, scope: Scope): CleanupFunction
17```