2.3.2 • Published 5 years ago

vue-jlunar-datepicker v2.3.2

Weekly downloads
24
License
MIT
Repository
github
Last release
5 years ago

vue-jLunar-datePicker

@JinWen

Lunar-Date-Picker component, lightWeight, powerful, easy to use, with festival and solar terms.

demo

Online demo

Getting Start


New for 2.0

1、add a new Property : type : DATE/DATERANGE (you can pick a period of time by use DATERANGE option)

2、fixed bugs

Install

npm install vue-jlunar-datepicker --save

Usage

main.js

import Vue from 'vue';

import JDatePicker from 'vue-jlunar-datepicker';

Vue.component("j-date-picker",JDatePicker);

test.vue

<template>
    <j-date-picker v-model="value1"
         :width="width1"
         :placeholder="placeholder"
         :picker-options="pickerOptions"
         :rangeSeparator="rangeSeparator"
         @change="onDateChange"
         :disabled="disabled"
         :showLunarClass="showLunarClass"
         :showLunarControl="showLunarControl"
         :type="type"
         :showBackYears="showBackYears"
         :showLunarIcon="showLunarIcon"
         :format="format">
    </j-date-picker>
</template>
<script>
export default{
  data(){
    return{
      data:{
        value1:'',
        type:'DATE',
        showLunarClass:'MIX',
        showBackYears:2,
        showLunarIcon:true,
        showLunarControl:true,
        width1:'300',
        format:'YYYY.MM.DD',
        placeholder:'please input something ...',
        rangeSeparator:'-',
        disabled:false,
        editable:true,
        clearable:true,
        pickerOptions: {
          disabledDate (time) {
            return time.getTime() < Date.now() - 8.64e7;
          }
      }
    }
  }
}
</script>

API


Attributes

Properties    Description                    Type      Optional valueDefault value
valuebind-value(v-model)String,Date,Array----
widthwidthString--200px/200
typeyou can pick a day or pick a period of timeStringDATE/DATERANGEDATE
showLunarClassThe display type of a lunar date; case insensitive;StringFULLLUNAR/LUNAR/NUMBER/MIXNUMBER
showLunarIconwhether to show lunar iconBooleantrue/falsefalse
showBackYearsthe years number after now based on the current yearNumber--2
formatformat DateString--YYYY-MM-DD
showLunarControlwhether to show the lunar control by defaultBooleantrue/falsetrue
editablewhether to input your date int the componentBooleantrue/falsefalse
placeholderplaceholder for componentString----
clearablewhether to show the clear buttonBooleantrue/falsetrue
disabledwhether to disable this componentBooleantrue/falsefalse
rangeSeparatordate separatorString--'-'
picker-optionsrefer to the followingobject--{}

picker-options

Properties    Description                    Type      Optional valueDefault value
disabledDateSet disable date.Parameter is current date.you should return Boolean .Like examples!Function----

event

event name    Description                    return      
changeWhen the input value changes return the valuevalue

GitHub https://github.com/tuhe32/vue-jLunar-datePicker

OSChina https://gitee.com/tuhe32/vue-jLunar-datePicker

For detailed explanation on how things work, checkout the guide and docs for vue-loader.

2.3.2

5 years ago

2.3.1

5 years ago

2.3.0

5 years ago

2.2.2

7 years ago

2.2.1

7 years ago

2.2.0

7 years ago

2.1.14

7 years ago

2.0.13

7 years ago

2.0.12

7 years ago

2.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago