1.1.1 • Published 3 years ago

vue-formulate-vcalendar v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Introduction

v-calendar integration for Vue Formulate

This plugin add the type calendar-date that behaves just like a text field, but return a date type.

You can pass vcalendar conviguration as a prop named vcalendar to the FormulateInput component.

Getting started

npm install --save vue-formulate-vcalendar

As with any Vue Formulate plugin

import Vue from 'vue'
import VueFormulate from '@braid/vue-formulate'

import FormulateVCalendar from 'vue-formulate-vcalendar'

Vue.use(VueFormulate, {
    plugins: [ FormulateVCalendar ]
})