element/packages/input-number/index.js

9 lines
202 B
JavaScript
Raw Normal View History

import ElInputNumber from './src/input-number';
2016-07-27 14:15:02 +08:00
2016-10-19 22:48:35 +08:00
/* istanbul ignore next */
2016-07-27 14:15:02 +08:00
ElInputNumber.install = function(Vue) {
Vue.component(ElInputNumber.name, ElInputNumber);
};
export default ElInputNumber;