📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

v-date-selector

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

v-date-selector

Simple Date Picker/Date Selector/Calendar in Vue

1.0.1
Source
npm
Version published
Maintainers
1
Created
Source

VDateSelector

Simple Date Picker/Date Selector/Calendar in Vue

npm bundlephobia npm vue2

Table of contents

Installation

yarn add v-date-selector

Usage

<template>
  <div id="app">
    <VDateSelector v-model="date"/>
  </div>
</template>

<script>
import VDateSelector from 'v-date-selector'

export default {
  name: 'app',
  components: {
    VDateSelector
  },
  data: () => ({
    date: new Date('1/1/2019')
  }),
  mounted() {
    console.log(VDateSelector)
  }
}
</script>

Or use only Calendar:

  <VDateSelector v-model="date" :showInput="false"/>

Demo

Keywords

double-select-list

FAQs

Package last updated on 10 Feb 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