📄️ Attribute Binding
DOMY provides powerful attribute binding to dynamically update HTML attributes. You can use either the d-bind syntax to bind attributes reactively.
📄️ Components
Components in DOMY allow you to create reusable UI elements with encapsulated logic. They support props, slots, events, and even functions passed as props to update a parent component's state dynamically.
📄️ Event Handling
DOMY allows components to react to user interactions using event bindings. Modifiers can be used to customize event behavior, such as preventing default actions, stopping propagation, or handling events conditionally.
📄️ Lifecycle
DOMY provides lifecycle hooks that allow developers to execute logic at different stages of a component’s lifecycle. These hooks are useful for initialization, mounting, cleanup, and unmounting processes.
📄️ Reactivity
DOMY provides a reactive system that allows components to manage state dynamically. This system includes signal, watch, watchEffect, globalWatch, computed, matchPath, and skipReactive to facilitate efficient state management.
📄️ Store
A store in DOMY is a shared reactive state that multiple components can access. It allows for state management across different parts of an application.