index.js 153 B

12345678
  1. import ElTag from './src/tag';
  2. /* istanbul ignore next */
  3. ElTag.install = function(Vue) {
  4. Vue.component(ElTag.name, ElTag);
  5. };
  6. export default ElTag;