index.js 173 B

123456789
  1. import VxeInput from './src/input'
  2. export const Input = Object.assign(VxeInput, {
  3. install (Vue) {
  4. Vue.component(VxeInput.name, VxeInput)
  5. }
  6. })
  7. export default Input