1.1.0 • Published 7 years ago

vue-cov-datepicker v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

vue-cov-datepicker

Calendar and datepicker component with material design for Vue.js

This component was originally developed by Awe and can be found here

The props structure was changed and the prop 'closeOnOkButton' was added

Special thanks to Awe

Demo

Screenshot

Requirements

Installation

npm

$ npm install vue-cov-datepicker

Usage

<script>
    import DatePicker from 'vue-cov-datepicker'

    export default {
        data () {
            return {
                date: {
                    time: ''
                },
                limit: [
                    {
                        type: 'weekday',
                        available: [1, 2, 3, 4, 5]
                    },
                    {
                        type: 'fromto',
                        from: '2016-02-01',
                        to: '2016-02-20'
                    }
                ]
            }
        },
        components: {
            DatePicker
        }
    }
</script>

<template>
    <div>

        <date-picker :date="date" :limit="limit"></date-picker>

    </div>
</template>

API

prop

  • date
    date: {
        time: ''
    }
  • type
    type: 'day' // 'day', 'min', 'multi-day'
  • format
    format: 'YYYY-MM-DD HH:mm'
  • closeOnOkButton
    closeOnOkButton: true
  • color
    color: {
        checkedDay: '#F50057',
        header: '#3f51b5',
        headerText: '#fff'
    }
  • inputStyle
    inputStyle: {
        'display': 'inline-block',
        'padding': '6px',
        'line-height': '22px',
        'font-size': '16px',
        'border': '2px solid #fff',
        'box-shadow': '0 1px 3px 0 rgba(0, 0, 0, 0.2)',
        'border-radius': '2px',
        'color': '#5F5F5F'
    }
  • placeholder
    placeholder: ''
  • limit
    limit: []
  • option
    option: {
        week: ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'],
        month: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
        buttons: {
            ok: 'OK',
            cancel: 'Cancel'
        },
        overlayOpacity: 0.5,
        dismissible: true
    }

License

The MIT License