function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Rasbehari DasRasbehari Das 

How to disable past date in lightning calendar in LWC

David Zhu 🔥David Zhu 🔥
In html:
<lighting-input type='date' min="{today}"></lightning-date>

in js:
@track today;

in renderedcallback method:

{
    var d = new Date();
    today  = d.getFullYear() + '-' + (d.getMonth()+1) + '-' + d.getDate();

}