use: Directive Syntax
Apply a Svelte action to a DOM element using the use: directive.
Actions in Svelte
An action is a function that runs when an element is mounted. It is invoked with the use: directive.
Basic Action
An action receives the DOM node as its argument.
function highlight(node) {
node.style.background = "yellow";
}