mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-03 12:48:45 +08:00
11 lines
248 B
JavaScript
11 lines
248 B
JavaScript
import ElTabs from './src/tabs';
|
|
import ElTabPane from './src/tab-pane';
|
|
|
|
/* istanbul ignore next */
|
|
export default function(Vue) {
|
|
Vue.component(ElTabs.name, ElTabs);
|
|
Vue.component(ElTabPane.name, ElTabPane);
|
|
};
|
|
|
|
export { ElTabs, ElTabPane };
|