@brunolopesr/vue-datepicker
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

@brunolopesr/vue-datepicker

This is a detached fork of the @vuepic/vue-datepicker

License npm Downloads Open issues CI Release date

Features

  • Single date picker
  • Range date picker
  • Time picker
  • Month picker
  • Year picker
  • Quarter picker
  • Week picker
  • Multiple dates select
  • Multiple calendars
  • Text input
  • UTC support
  • Timezones
  • Locale support
  • Week numbers
  • Custom v-model
  • Dark and light theme
  • SSR support
  • Highly configurable
  • Accessible
  • Included type definitions

Install

yarn add @brunolopesr/vue-datepicker

# or

npm install @brunolopesr/vue-datepicker

Import and register component

Global

import { createApp } from 'vue';
import App from './App.vue';

import VueDatePicker from '@brunolopesr/vue-datepicker';
import '@brunolopesr/vue-datepicker/dist/main.css';

const app = createApp(App);
app.component('VueDatePicker', VueDatePicker);

Local

<script>
    import VueDatePicker from '@brunolopesr/vue-datepicker';
    import '@brunolopesr/vue-datepicker/dist/main.css';
    
    export default {
        components: { VueDatePicker }
    }
</script>

Versioning

This project follows SemVer specification

License

MIT

Package Sidebar

Install

npm i @brunolopesr/vue-datepicker

Weekly Downloads

21

Version

1.2.0

License

MIT

Unpacked Size

585 kB

Total Files

9

Last publish

Collaborators

  • brunolopesr