📄️ $attrs
The $attrs special helper allows components to access attributes passed from their parent, excluding props.
📄️ $childrens
The $childrens special helper allows a component to access the elements passed inside its tag.
📄️ $config
Allow you to retrieve the current configuration.
📄️ $el
The $el special helper provides access to the current element associated with the directive or component. This is useful when performing direct DOM manipulations or needing a reference to the element within a scoped function.
📄️ $names
The $names special helper allows a component to access registered child elements that have been assigned a specific name using the d-name directive. This is useful for managing named slots or dynamically manipulating specific child elements within a component.
📄️ $nextTick
The $nextTick special helper ensures that a callback function is executed after the framework has finished updating dependencies. This is useful for scenarios where you need to wait for DOM updates before executing logic.
📄️ $props
The $props special helper allows a component to access the properties passed to it by its parent. This is useful for managing dynamic data within components.
📄️ $refs
The $refs special helper allows access to registered reference elements within a component. This is useful for interacting directly with elements assigned a d-ref identifier.
📄️ $root
The $root special helper provides access to the parent element of the current component or directive. It is useful for performing DOM manipulations that require knowledge of the element's immediate container.