JSFiddle - React, Tailwind, and code Playground

by David Waterston

HTML

<script src="https://dbushell.github.io/Pikaday/pikaday.js"></script>
<link rel="stylesheet" href="https://dbushell.github.io/Pikaday/css/pikaday.css">
<input id="datepicker">

JavaScript

var picker = new Pikaday({
    disableDayFn: function(date){
        // Disable Monday
        return date.getDay() === 1;
    },
    field: document.getElementById('datepicker')
});

myDateFocus: function() {
        this.$refs.myDate.pikaday.setDate(this.myDateValue, true);
    }