element/packages/tab-pane/index.js

9 lines
185 B
JavaScript
Raw Normal View History

2016-07-27 14:15:02 +08:00
const TabPane = require('../tabs/src/tab-pane.vue');
2016-10-19 22:48:35 +08:00
/* istanbul ignore next */
2016-07-27 14:15:02 +08:00
TabPane.install = function(Vue) {
Vue.component(TabPane.name, TabPane);
};
module.exports = TabPane;