UNPKG

date-of-birth

Version:
21 lines (17 loc) 411 B
import DateOfBirth from './packages/date-of-birth/index.js'; const components = [ DateOfBirth, ] const install = function(Vue, opts = {}) { components.map(component => { Vue.component(component.name, component); }) } /* 支持使用标签的方式引入 */ if (typeof window !== 'undefined' && window.Vue) { install(window.Vue); } export default { install, DateOfBirth, }