vue-mobile-calendar-lhq
Version:
vue calendar lhq
18 lines (14 loc) • 373 B
JavaScript
import { calendar, inlineCalendar } from './index';
const install = function(Vue) {
if (install.installed) return;
Vue.component(calendar.name, calendar);
Vue.component(inlineCalendar.name, inlineCalendar);
};
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue);
}
export default {
install,
calendar,
inlineCalendar,
};