
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
vue-calendar-picker
Advanced tools
Calendar component

vue-calendar-picker demo on jsfiddle
<template>
<calendar></calendar>
</template>
<script>
import {calendar} from 'vue-calendar-picker'
export default {
components: {
calendar: calendar
}
}
</script>
npm install --save vue-calendar-picker
vue-calendar-picker has 3 available components:
calendar.vue: simple calendar.calendarEvents.vue: calendar.vue + one-time events and date/time periods display.calendarRange.vue: calendarEvents.vue + range selection.calendar.vueThe locale of the calendar. Impacts the days names, month names and first day ofthe week. supported locale list. Locale name must be uppercase.
Enable compact mode. Use less UI space.
Initial view zoom.
Initial view date.
Called for each calendar cell. The retun valus is used as className of the cell.
Allow to display multiple calendar views side-by-side.
In the month view, show days belonging to the preceding and following month.
eventObject has the following properties:
'down': mousedown or touchstart'up': mouseup or touchend'tap': click or tap'press': dblclick or longtap'over': mouseover or touchmoveIndicates that the pointer is active: a mouse button is down or the finger touches the screen.
Indicates that the shift or ctrl or alt or meta key is down. Always false on touch-screen devices.
{ start: Date, end: Date }The date range of the item
The range name: 'minute', 'hour', 'day', 'week', 'month', 'year'.
The content of calendar cells.
itemRange { start: Date, end: Date }The time range of the the cell.
layout stringThe layout of the content, either 'horizontal' or 'vertical'.
vue-calendar-picker can by styled easily, all css selectors are prefixed with .calendar.
.calendar {
border: 2px solid #000;
border-radius: 0.5em;
padding: 0.5em;
}
calendarEvents.vue{ color: CSS color, start: Date, end: Date }A list of one-time events and date/time periods to display in the calendar.
One-time events has the same start and end date.
{ start: Date, end: Date }The current calendar selection. For display only.
eventObject has the same properties that calendar.vue added:
A reference to a calendar event (see :events property) related to the mouse/touch event, otherwise undefined.
calendarRange.vueAllow user selection. The selection property object is modified according to the user's selection.
falseDisplay two calendars side-by-side to make selection easier.
eventObject has the same properties that calendar.vue.
Same browser support as Vue.js 2
<template>
<calendar-range :events="calendarEvents" :selection="calendarSelection"></calendar-range>
</template>
<script>
import {calendarRange} from 'vue-calendar-picker'
export default {
components: {
calendarRange: calendarRange
},
data() {
return {
calendarEvents: [
// periods
{ color:'#aaf', start: new Date(2016, 9, 5, 0,0,0,0), end: new Date(2017, 4, 15, 0,0,0,0) },
{ color:'#afa', start: new Date(2016, 9, 5, 0,0,0,0), end: new Date(2017, 4, 13, 0,0,0,0) },
{ color:'#faa', start: new Date(2017, 4, 8, 12,30, 0,0), end: new Date(2017, 4, 9, 6,30, 0,0) },
// one-time
{ color:'#faa', start: new Date(2017, 4, 2, 0,0,0,0), end: new Date(2017, 4, 2, 0,0,0,0) },
{ color:'#aaa', start: new Date(2017, 4, 2, 0,0,0,0), end: new Date(2017, 4, 2, 0,0,0,0) },
],
calendarSelection: {
start: new Date(2017, 4, 2), end: new Date(2017, 4, 7, 12)
}
}
}
}
</script>

FAQs
calendar component
The npm package vue-calendar-picker receives a total of 17 weekly downloads. As such, vue-calendar-picker popularity was classified as not popular.
We found that vue-calendar-picker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.