@lkmadushan/vue-tuicalendar
Version:
A Vue.js wrapper for TOAST UI Calendar
19 lines (15 loc) • 371 B
JavaScript
import VueTuicalendar from './TuiCalendar.vue'
function plugin (Vue) {
Vue.component('vue-tuicalendar', VueTuicalendar)
}
// Install by default if using the script tag
if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(plugin)
}
export default plugin
const version = '__VERSION__'
// Export all components too
export {
VueTuicalendar,
version
}