UNPKG

vue-ladda

Version:

A vue component wrapper of Ladda button.

15 lines (11 loc) 274 B
import VueLadda from './vue-ladda.vue'; const installer = { install(Vue, options) { Vue.component('vue-ladda', VueLadda); } }; const inBrowser = typeof window !== 'undefined'; if (inBrowser && window.Vue) { window.Vue.use(installer); } export default VueLadda;