add layout component with header, content, sider and footer
This commit is contained in:
parent
e6508e277f
commit
a2eb028782
17 changed files with 509 additions and 4 deletions
12
src/components/layout/index.js
Normal file
12
src/components/layout/index.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
import Layout from './layout.vue';
|
||||
import Header from './header.vue';
|
||||
import Sider from './sider.vue';
|
||||
import Content from './content.vue';
|
||||
import Footer from './footer.vue';
|
||||
|
||||
Layout.Header = Header;
|
||||
Layout.Sider = Sider;
|
||||
Layout.Content = Content;
|
||||
Layout.Footer = Footer;
|
||||
|
||||
export default Layout;
|
Loading…
Add table
Add a link
Reference in a new issue