the attribute to bind (empty string deletes the attribute from the element)
Optional
transform: ((this, value) => string)an optional function to transform the value before it is set on the element
DecoratorCallback
Decorator to bind any attribute of an element to a property
//This will set the src attribute of the img with id myImg to the value of the src property
@BindAttribute("myImg", "src")
public src: string = "https://via.placeholder.com/150";
@BindAttribute("myImg", "src", (val: string) => `https://test.com/images/${val})
public src: string = "test.png";
the element to bind the property to
the attribute to bind (empty string deletes the attribute from the element)
a function to transform the value to a string before it is set on the element
DecoratorCallback
Decorator to bind any attribute of an element to a property
//This will set the src attribute of the img with id myImg to the value of the src property
@BindAttribute("myImg", "disabled", (val: boolean) => val ? "disabled" : "")
disabled:boolean=false;
Generated using TypeDoc
the element to bind the property to