@reciprocity/day-selector

0.2.2 • Public • Published

DaySelector

A component that lets you pick days of the week.

Installation

npm install @reciprocity/day-selector

or

yarn add @reciprocity/day-selector

Usage

This component is meant to be used as an ES module, so you can import it using the ES6 import syntax.

After importing you can just register it with Vue. Eg:

app.vue

<template>
	<day-selector :value="[]" @input="onDaysSelected" />
</template>
<script>
	import DaySelector from '@reciprocity/day-selector';

	export default Vue.extend({
		name: 'My App',
		components: {
			DaySelector
		},
		methods: {
			onDaysSelected: days => {
				console.log('new days selected', days);
			}
		}
	};
</script>

Readme

Keywords

none

Package Sidebar

Install

npm i @reciprocity/day-selector

Weekly Downloads

57

Version

0.2.2

License

MIT

Unpacked Size

293 kB

Total Files

7

Last publish

Collaborators

  • homer0
  • chavlji
  • leonardo-reciprocity
  • ferjalo