vue-input-pack

1.0.6 • Public • Published

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

/vue-input-pack/

    Package Sidebar

    Install

    npm i vue-input-pack

    Weekly Downloads

    1

    Version

    1.0.6

    License

    MIT

    Unpacked Size

    35.9 kB

    Total Files

    11

    Last publish

    Collaborators

    • rramsden