@ecwenze1/vue-datepicker
Version:
A clean datepicker made with VueJs
18 lines (14 loc) • 392 B
JavaScript
import * as components from './components';
import VueDatePicker from './framework';
export * from './components';
export default VueDatePicker;
const install = VueDatePicker.install;
VueDatePicker.install = (Vue, options) => {
install.call(VueDatePicker, Vue, {
components,
options,
});
};
if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(VueDatePicker);
}