Skip to content

Glossary

TermMeaning
setupOften means the component body: the code in the component function that runs once on creation—reactive state, lifecycle registration, etc.
Render function / component render functionThe function returned from the component body (or render on a returned object), invoked on each refresh to produce the current JSX.
reactiveWraps an object in a reactive proxy; property access can be tracked as view dependencies.
createSignal / signalcreateSignal(initial) creates function-style state: signal() to read, signal.set(v) to write.
computedCached derived value; read via .value.
watch / watchEffectRun callbacks or effects when dependencies change; often auto-cleaned on unmount (see Reactivity).
createAppCreate a browser app instance (from @viewfly/platform-browser).
mount / destroyAttach the app to a DOM node / tear down and clean up.
Provider / injectDI: parents register values; children inject them (see Dependency injection).
RouterModule / RouterOutlet / LinkApp module, outlet, and declarative links from @viewfly/router (see Router).
withMarkAdds custom DOM markers for rendered nodes—pairs with scoped CSS (see Scoped CSS).

MIT License