mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 13:17:47 +08:00
12 lines
286 B
JavaScript
12 lines
286 B
JavaScript
const ElTabs = require('./src/tabs');
|
|
const ElTabPane = require('./src/tab-pane');
|
|
|
|
/* istanbul ignore next */
|
|
module.exports = function(Vue) {
|
|
Vue.component(ElTabs.name, ElTabs);
|
|
Vue.component(ElTabPane.name, ElTabPane);
|
|
};
|
|
|
|
exports.ElTabs = ElTabs;
|
|
exports.ElTabPane = ElTabPane;
|