mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
17 lines
558 B
JavaScript
17 lines
558 B
JavaScript
/* istanbul ignore file */
|
|
import Layout from './src/Layout.vue'
|
|
import LayoutHeader from './src/LayoutHeader.vue'
|
|
import LayoutFooter from './src/LayoutFooter.vue'
|
|
import LayoutContent from './src/LayoutContent.vue'
|
|
import LayoutSider from './src/LayoutSider.vue'
|
|
|
|
Layout.install = function (Vue) {
|
|
Vue.component(Layout.name, Layout)
|
|
Vue.component(LayoutHeader.name, LayoutHeader)
|
|
Vue.component(LayoutFooter.name, LayoutFooter)
|
|
Vue.component(LayoutContent.name, LayoutContent)
|
|
Vue.component(LayoutSider.name, LayoutSider)
|
|
}
|
|
|
|
export default Layout
|