-
Notifications
You must be signed in to change notification settings - Fork 5
luxPropertyFromObject v15
Thomas Dickhut edited this page Mar 12, 2024
·
1 revision
Name | Beschreibung |
---|---|
import | LuxPipesModule |
selector | luxPropertyFromObject |
Name | Typ | Beschreibung |
---|---|---|
luxPropertyFromObject | any | Input-Wert der Pipe (muss nicht explizit ausgefüllt werden) |
propertyNamePath | string | Enthält den "Pfad" zur gesuchten Property. Das kann direkt der Name der Property, aber auch über mehrere Unterobjekte verzweigt sein (siehe Beispiel). |
Ts
exampleObject = {
subObject: {
propertyXY: "Maxi Musterline",
},
};
Html
<div>{{ exampleObject | luxPropertyFromObject:'subObject.propertyXY' }}</div>
-
Versionen