I want to pass a boolean value (true/false) to a lit component via. the dom. I'm having issues because it is always converted to true, I cant seem to find a good example for this in the lit documentation.
So basically:
<my-element foo="false" />
...
@property({type: Boolean})
foo: boolean;
What I tried allready is try to pass: "${false}"