UNPKG

vue-clock-lonlyape

Version:
24 lines (18 loc) 399 B
import vueClock from './components/clock/' const components = [vueClock]; const install = function(Vue, options) { components.map(component => { Vue.component(component.name, component); }) } /* 支持使用标签的方式引入 */ if (typeof window !== 'undefined' && window.Vue) { install(window.Vue); } export default { install } export { install, vueClock };