Is it possible to give only MM/YYYY option in bulma-calendar extension ? The default option shows dd-mm-yyyy?
<div class ="date-cal">
<input type = "date">
</div>
CodePudding user response:
You can use the type "month" for input tags in HTML:
<input type="month" min="2018-03" value="2018-05">