0.1.3 • Published 4 years ago
@cone2875/vue-formulate-datetime v0.1.3
Introduction
Vue Formulate Datetime is a Vue Formulate plugin that provides the
vue-datetime UI into a FormulateInput.
Installation
NPM
npm install vue-formulate-datetimeAdd to Vue
As with any Vue Formulate plugin:
import Vue from 'vue'
import VueFormulate from '@braid/vue-formulate'
import FormulateVueDatetimePlugin from '@cone2875/vue-formulate-datetime'
// !important
// Import the vue-datetime css
import 'vue-datetime/dist/vue-datetime.css'
Vue.use(VueFormulate, {
plugins: [ FormulateVueDatetimePlugin ]
})Usage
Use vue-datetime as the input type. vue-datetime uses the type prop
too, so we changed the name of this prop to datetype.
<FormulateInput
type="vue-datetime"
datetype="datetime"
/>It works as any other FormulateInput.