npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

vue-dateify

v1.1.2

Published

A VueJS component for picking the date and time

Downloads

12

Readme

Vue Dateify

A VueJS component for picking the date and time.

npm version

Examples

You can view some examples online, or get it set up locally: npm install && npm run build

Install

$ npm install vue-dateify --save
import VueDateify from 'vue-dateify';

new Vue({
    el: '#app',
    
    components: {
        VueDateify
    }
});

Usage

<vue-dateify></vue-dateify>

value or v-model prop must be a Date object

<script>
    let something = new Date()
</script>

<vue-dateify v-model="something"></vue-dateify>

Available props

| Prop | Type | Default | Description | |-------------------------------|-----------------|-------------------------|------------------------------------------| | value | Date | | Date object representing the value of the date and/or time picker| | date-addon | String | '' | HTML to be disabled in an input group addon | | date-label | String | '' | Label to be displayed above input element | | date-format | String | 'MMMM Do, YYYY h:mm a' | The display format that is shown in the input field | | date-auto-close | Boolean | true | Set to false to require a "save" button in order to save changes to the model | | date-min | Date | null | Minimum selectable date | | date-max | Date | null | Maximum selectable date | | highlighted-dates | Array | [] | Show dates as highlighted on the calendar with details view of the dates | | time-addon | String | '' | HTML to be disabled in an input group addon | | time-label | String | '' | Label to be displayed above input element | | time-format | String | 'h:mm a' | The display format that is shown in the input field | | time-auto-close | Boolean | true | Set to false to require a "save" button in order to save changes to the model | | international | Boolean | false | Show time in 24-hour mode | | animate | Boolean | true | Apply css animation classes to the pickers | | animate-in-class | String | 'animated bounceInDown' | Customize the animation "enter/in" classes | | animate-out-class | String | 'animated fadeOutUp' | Customize the animation "exit/out" classes | | weeks | Boolean | false | Show week numbers on the calendar for the date picker | | view | String | 'days' | Control the deepest level on the calendar (options are days, months, years) | | disabled-days | Array | [] | Disable certain days of the week | | disabled-months | Array | [] | Disable certain months of the year | | disabled-years | Array | [] | Disable certain years | | disabled-dates | Array | [] | Disable certain calendar dates | | disabled-hours | Array | [] | Disable certain hours of the clock | | disabled-minutes | Array | [] | Disable certain minutes of the clock | | today-button | Boolean | false | Show a button for jumping to "today" on the day view of the calendar | | close-button | Boolean | false | Show a button for closing the date and/or time picker | | separate | Boolean | false | Set to true to show the date and time pickers as separate inputs |

Events

| Name | Parameter | Description | |-------------------------------|-----------------|------------------------------------------| | onChange | Date | Event emitted from vue-dateify component which returns the updated model as a Date object |

Date Formatting

Refer to moment.js for date-format and time-format.

Issues

File any issues here https://github.com/klye-g/vue-dateify/issues