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

https://github.com/meyt/vue-datewheel

Simple iOS like date picker for Vue.
https://github.com/meyt/vue-datewheel

vue

Last synced: 2 months ago
JSON representation

Simple iOS like date picker for Vue.

Awesome Lists containing this project

README

        

# vue-datewheel

![Build Status](https://github.com/meyt/vue-datewheel/actions/workflows/main.yaml/badge.svg?branch=master)

Simple iOS like date picker for Vue.

Features:
- Based on Browser native [Intl](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl) implementation
- Zero dependency
- Multi-calendar
- Localization
- Mouse wheel and touch gestures

[Demo](https://meyt.github.io/vue-datewheel/?path=/story/vue-datewheel--basic)

## Install

Vue 2
```
npm install --save [email protected]
```

Vue 3
```
npm install --save vue-datewheel
```

## Usage:

```vue






import vueDatewheel from 'vue-datewheel'
import 'vue-datewheel/dist/vue-datewheel.css'

export default {
components: {
vueDatewheel,
},
data () {
return {
selectedDate: null
}
}
}

```