mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-15 04:42:23 +08:00
10 lines
204 B
JavaScript
10 lines
204 B
JavaScript
import Tab from './src/main.vue'
|
|
import NTabPanel from './src/TabPanel.vue'
|
|
|
|
Tab.install = function (Vue) {
|
|
Vue.component(Tab.name, Tab)
|
|
Vue.component(NTabPanel.name, NTabPanel)
|
|
}
|
|
|
|
export default Tab
|