An open API service indexing awesome lists of open source software.

https://github.com/nkoehring/vuedt

super lightweight Vuejs Date and Time picker component with decent UI and full i18n support
https://github.com/nkoehring/vuedt

Last synced: 5 months ago
JSON representation

super lightweight Vuejs Date and Time picker component with decent UI and full i18n support

Awesome Lists containing this project

README

          

VueDT
=====

Super lightweight Vuejs Date and Time picker component with i18n support. Only 3.3kb minified and gzipped!

Screenshots
-----------

![Screenshot01](https://raw.githubusercontent.com/nkoehring/vuedt/master/vuedt01.jpg)
![Screenshot02](https://raw.githubusercontent.com/nkoehring/vuedt/master/vuedt02.jpg)

There are also nice animations 'n stuff.

Usage
-----

Simple standard example for a date and time picker that is initialized with a data value:

```html

// don't forget to import the styles
import 'vuedt/dist/vuedt.css'
import VueDT from 'vuedt'

export default {
components: { VueDT },
data () {
return {
date: new Date()
}
}
}

```

More possibilities:

```html





import 'vuedt/dist/vuedt.css'
import VueDT from 'vuedt'

export default {
components: { VueDT },
data () {
return {
date: new Date()
}
}
}

```

See [the Date toLocaleString MDN page](https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString) for all possible possible locale options.

Planned features
----------------

* better way to store translations
* black listing or white listing of dates and date ranges
* highlighting of particular dates, date ranges and columns
* (limited?) theming support

Contributing
------------
**This project is still in beta!**
Please help making it stable by testing and submitting issues and pull requests.