New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

vue-date-picker

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-date-picker

datepicker component for Vue 2.x

latest
Source
npmnpm
Version
2.5.0
Version published
Weekly downloads
187
-19.05%
Maintainers
1
Weekly downloads
 
Created
Source

vue-date-picker

npm version david deps npm license

datepicker component for Vue 2.x

Screenshot

screenshot

Instllation

$ npm install vue-date-picker --save

Usage

<template>
  <div class="demo">
    <datepicker :readonly="true" format="YYYY-MM-DD" name="date1"></datepicker>
    <datepicker value="2018-9-5" format="YYYY-M-D" name="date2"></datepicker>
    <datepicker :readonly="true" format="MMM/D/YYYY" name="date3" :input-attr="{ 'data-test': 'value' }"></datepicker>
  </div>
</template>

<script>
import datepicker from 'vue-date-picker'

export default {
  components: {
    datepicker
  }
}
</script>

Prop

PropTypeDefaultDescription
valueString--Date value of the datepicker
nameString--Input name property
formatStringYYYY-MM-DDDate formatting string
readonlyStringfalseInput readonly property
input-classArray | Object--Binding class for input
input-styleArray | Object--Binding inline style for input
input-attrObject--Binding attribute for input
calendar-classArray | Object--Binding class for calendar
calendar-styleArray | Object--Binding inline style for calendar
calendar-attrObject--Binding attribute for calendar
disabled-dateFunction--A function that determines if you want to disable dates

License

The MIT License

Keywords

vue

FAQs

Package last updated on 05 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts