Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kenhyuwa/litepie-datepicker

Litepie Datepicker is a date range picker component for Vue.js and Tailwind CSS, dependent to day.js.
https://github.com/kenhyuwa/litepie-datepicker

litepie litepie-datepicker vue-datepicker vue-daterange-picker

Last synced: 13 days ago
JSON representation

Litepie Datepicker is a date range picker component for Vue.js and Tailwind CSS, dependent to day.js.

Awesome Lists containing this project

README

        



Litepie Datepicker



Litepie Datepicker is a date range picker component for Vue.js and Tailwind CSS, dependent to day.js.

---

## Documentation

For full documentation, visit [litepie.com](https://litepie.com).

## Simple Usage

How it works,

```vue



import { ref } from 'vue';
import LitepieDatepicker from 'litepie-datepicker';

export default {
components: {
LitepieDatepicker
},
setup() {
const myRef = ref(null);
const dateValue = ref([]);
const formatter = ref({
date: 'DD MMM YYYY',
month: 'MMM'
});

return {
myRef,
dateValue,
formatter
};
}
};

```

## Theming options
- Light mode


Light mode

- Dark mode


Dark mode

## Changelog
All notable changes to this project will be documented in this file, [Read](CHANGELOG.md).

## License
The [MIT](LICENSE) License. Please [see](http://opensource.org/licenses/MIT) for more information.

## Thanks to
- [Vue](https://v3.vuejs.org/)
- [Tailwind CSS](https://tailwindcss.com/)
- [day.js](https://day.js.org/)
- and other support...