UNPKG

vue-clip

Version:

file uploader for vuejs with magical powers

19 lines (14 loc) 308 B
'use strict' import Clip from './src/components/Clip/index.js' const VueClip = { install (Vue) { Vue.component('vue-clip', Clip) } } /** * When required globally */ if (typeof (window) !== 'undefined' && typeof (window.Vue) !== 'undefined') { window.Vue.use(VueClip) } export default VueClip