element/packages/tab-pane/index.js

9 lines
178 B
JavaScript
Raw Normal View History

import TabPane from '../tabs/src/tab-pane.vue';
2016-07-27 06:15:02 +00:00
2016-10-19 14:48:35 +00:00
/* istanbul ignore next */
2016-07-27 06:15:02 +00:00
TabPane.install = function(Vue) {
Vue.component(TabPane.name, TabPane);
};
export default TabPane;