1.0.6 • Published 6 years ago

vue-input-pack v1.0.6

Weekly downloads
2
License
MIT
Repository
-
Last release
6 years ago

vue-input-pack

Collection of simple input helpers for vue.js

What's included?

  • Date Input
  • Time Input

Screenshot

image

Requirements

Installation

npm

$ npm install vue-input-pack

Usage

<template>
  <date-input v-model="date"></date-input>
  <time-input v-model="time"></time-input>
</template>

<script>
import { DateInput, TimeInput } from 'vue-input-pack';

export default {
    data() {
      return {
        date: { year: 2016, month: 1, day: 1 },
        time: { HH: 17, mm: 30 }
      }
    },
    components: { DateInput, TimeInput }
};
</script>

License

The MIT License

1.0.6

6 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago