布局

协助进行页面级整体布局。

设计规则

尺寸

一级导航项偏左靠近 logo 放置,辅助菜单偏右放置。

  • 顶部导航(大部分系统):一级导航高度 64px,二级导航 48px
  • 顶部导航(展示类页面):一级导航高度 80px,二级导航 56px
  • 顶部导航高度的范围计算公式为:48+8n
  • 侧边导航宽度的范围计算公式:200+8n

交互

  • 一级导航和末级的导航需要在可视化的层面被强调出来;
  • 当前项应该在呈现上优先级最高;
  • 当导航收起的时候,当前项的样式自动赋予给它的上一个层级;
  • 左侧导航栏的收放交互同时支持手风琴和全展开的样式,根据业务的要求进行适当的选择。

视觉

导航样式上需要根据信息层级合理的选择样式:

  • 大色块强调
    建议用于底色为深色系时,当前页面父级的导航项。

  • 高亮火柴棍
    当导航栏底色为浅色系时使用,可用于当前页面对应导航项,建议尽量在导航路径的最终项使用。

  • 字体高亮变色
    从可视化层面,字体高亮的视觉强化力度低于大色块,通常在当前项的上一级使用。

  • 字体放大
    12px14px 是导航的标准字号,14 号字体用在一、二级导航中。字号可以考虑导航项的等级做相应选择。

组件概述

  • Layout:布局容器,其下可嵌套 Header Sider Content FooterLayout 本身,可以放在任何父容器中。
  • Header:顶部布局,自带默认样式,其下可嵌套任何元素,只能放在 Layout 中。
  • Sider:侧边栏,自带默认样式及基本功能,其下可嵌套任何元素,只能放在 Layout 中。
  • Content:内容部分,自带默认样式,其下可嵌套任何元素,只能放在 Layout 中。
  • Footer:底部布局,自带默认样式,其下可嵌套任何元素,只能放在 Layout 中。

注意:采用 flex 布局实现,请注意浏览器兼容性问题。

代码演示

Layout布局 - 图1

基本结构

典型的页面布局。

  1. <template>
  2. <div id="components-layout-demo-basic">
  3. <a-layout>
  4. <a-layout-header>Header</a-layout-header>
  5. <a-layout-content>Content</a-layout-content>
  6. <a-layout-footer>Footer</a-layout-footer>
  7. </a-layout>
  8. <a-layout>
  9. <a-layout-header>Header</a-layout-header>
  10. <a-layout>
  11. <a-layout-sider>Sider</a-layout-sider>
  12. <a-layout-content>Content</a-layout-content>
  13. </a-layout>
  14. <a-layout-footer>Footer</a-layout-footer>
  15. </a-layout>
  16. <a-layout>
  17. <a-layout-header>Header</a-layout-header>
  18. <a-layout>
  19. <a-layout-content>Content</a-layout-content>
  20. <a-layout-sider>Sider</a-layout-sider>
  21. </a-layout>
  22. <a-layout-footer>Footer</a-layout-footer>
  23. </a-layout>
  24. <a-layout>
  25. <a-layout-sider>Sider</a-layout-sider>
  26. <a-layout>
  27. <a-layout-header>Header</a-layout-header>
  28. <a-layout-content>Content</a-layout-content>
  29. <a-layout-footer>Footer</a-layout-footer>
  30. </a-layout>
  31. </a-layout>
  32. </div>
  33. </template>
  34. <style>
  35. #components-layout-demo-basic {
  36. text-align: center;
  37. }
  38. #components-layout-demo-basic .ant-layout-header,
  39. #components-layout-demo-basic .ant-layout-footer {
  40. background: #7dbcea;
  41. color: #fff;
  42. }
  43. #components-layout-demo-basic .ant-layout-footer {
  44. line-height: 1.5;
  45. }
  46. #components-layout-demo-basic .ant-layout-sider {
  47. background: #3ba0e9;
  48. color: #fff;
  49. line-height: 120px;
  50. }
  51. #components-layout-demo-basic .ant-layout-content {
  52. background: rgba(16, 142, 233, 1);
  53. color: #fff;
  54. min-height: 120px;
  55. line-height: 120px;
  56. }
  57. #components-layout-demo-basic > .ant-layout {
  58. margin-bottom: 48px;
  59. }
  60. #components-layout-demo-basic > .ant-layout:last-child {
  61. margin: 0;
  62. }
  63. </style>

Layout布局 - 图2

自定义触发器

要使用自定义触发器,可以设置 :trigger="null" 来隐藏默认设定。

  1. <template>
  2. <a-layout id="components-layout-demo-custom-trigger">
  3. <a-layout-sider
  4. :trigger="null"
  5. collapsible
  6. v-model="collapsed"
  7. >
  8. <div class="logo" />
  9. <a-menu theme="dark" mode="inline" :defaultSelectedKeys="['1']">
  10. <a-menu-item key="1">
  11. <a-icon type="user" />
  12. <span>nav 1</span>
  13. </a-menu-item>
  14. <a-menu-item key="2">
  15. <a-icon type="video-camera" />
  16. <span>nav 2</span>
  17. </a-menu-item>
  18. <a-menu-item key="3">
  19. <a-icon type="upload" />
  20. <span>nav 3</span>
  21. </a-menu-item>
  22. </a-menu>
  23. </a-layout-sider>
  24. <a-layout>
  25. <a-layout-header style="background: #fff; padding: 0">
  26. <a-icon
  27. class="trigger"
  28. :type="collapsed ? 'menu-unfold' : 'menu-fold'"
  29. @click="()=> collapsed = !collapsed"
  30. />
  31. </a-layout-header>
  32. <a-layout-content :style="{ margin: '24px 16px', padding: '24px', background: '#fff', minHeight: '280px' }">
  33. Content
  34. </a-layout-content>
  35. </a-layout>
  36. </a-layout>
  37. </template>
  38. <script>
  39. export default {
  40. data(){
  41. return {
  42. collapsed: false,
  43. }
  44. },
  45. }
  46. </script>
  47. <style>
  48. #components-layout-demo-custom-trigger .trigger {
  49. font-size: 18px;
  50. line-height: 64px;
  51. padding: 0 24px;
  52. cursor: pointer;
  53. transition: color .3s;
  54. }
  55. #components-layout-demo-custom-trigger .trigger:hover {
  56. color: #1890ff;
  57. }
  58. #components-layout-demo-custom-trigger .logo {
  59. height: 32px;
  60. background: rgba(255,255,255,.2);
  61. margin: 16px;
  62. }
  63. </style>

Layout布局 - 图3

顶部-侧边布局-通栏

同样拥有顶部导航及侧边栏,区别是两边未留边距,多用于应用型的网站。

  1. <template>
  2. <a-layout id="components-layout-demo-top-side-2">
  3. <a-layout-header class="header">
  4. <div class="logo" />
  5. <a-menu
  6. theme="dark"
  7. mode="horizontal"
  8. :defaultSelectedKeys="['2']"
  9. :style="{ lineHeight: '64px' }"
  10. >
  11. <a-menu-item key="1">nav 1</a-menu-item>
  12. <a-menu-item key="2">nav 2</a-menu-item>
  13. <a-menu-item key="3">nav 3</a-menu-item>
  14. </a-menu>
  15. </a-layout-header>
  16. <a-layout>
  17. <a-layout-sider width="200" style="background: #fff">
  18. <a-menu
  19. mode="inline"
  20. :defaultSelectedKeys="['1']"
  21. :defaultOpenKeys="['sub1']"
  22. :style="{ height: '100%', borderRight: 0 }"
  23. >
  24. <a-sub-menu key="sub1">
  25. <span slot="title"><a-icon type="user" />subnav 1</span>
  26. <a-menu-item key="1">option1</a-menu-item>
  27. <a-menu-item key="2">option2</a-menu-item>
  28. <a-menu-item key="3">option3</a-menu-item>
  29. <a-menu-item key="4">option4</a-menu-item>
  30. </a-sub-menu>
  31. <a-sub-menu key="sub2">
  32. <span slot="title"><a-icon type="laptop" />subnav 2</span>
  33. <a-menu-item key="5">option5</a-menu-item>
  34. <a-menu-item key="6">option6</a-menu-item>
  35. <a-menu-item key="7">option7</a-menu-item>
  36. <a-menu-item key="8">option8</a-menu-item>
  37. </a-sub-menu>
  38. <a-sub-menu key="sub3">
  39. <span slot="title"><a-icon type="notification" />subnav 3</span>
  40. <a-menu-item key="9">option9</a-menu-item>
  41. <a-menu-item key="10">option10</a-menu-item>
  42. <a-menu-item key="11">option11</a-menu-item>
  43. <a-menu-item key="12">option12</a-menu-item>
  44. </a-sub-menu>
  45. </a-menu>
  46. </a-layout-sider>
  47. <a-layout style="padding: 0 24px 24px">
  48. <a-breadcrumb style="margin: 16px 0">
  49. <a-breadcrumb-item>Home</a-breadcrumb-item>
  50. <a-breadcrumb-item>List</a-breadcrumb-item>
  51. <a-breadcrumb-item>App</a-breadcrumb-item>
  52. </a-breadcrumb>
  53. <a-layout-content :style="{ background: '#fff', padding: '24px', margin: 0, minHeight: '280px' }">
  54. Content
  55. </a-layout-content>
  56. </a-layout>
  57. </a-layout>
  58. </a-layout>
  59. </template>
  60. <script>
  61. export default {
  62. data () {
  63. return {
  64. collapsed: false,
  65. }
  66. },
  67. }
  68. </script>
  69. <style>
  70. #components-layout-demo-top-side-2 .logo {
  71. width: 120px;
  72. height: 31px;
  73. background: rgba(255,255,255,.2);
  74. margin: 16px 28px 16px 0;
  75. float: left;
  76. }
  77. </style>

Layout布局 - 图4

顶部-侧边布局

拥有顶部导航及侧边栏的页面,多用于展示类网站。

  1. <template>
  2. <a-layout id="components-layout-demo-top-side">
  3. <a-layout-header class="header">
  4. <div class="logo" />
  5. <a-menu
  6. theme="dark"
  7. mode="horizontal"
  8. :defaultSelectedKeys="['2']"
  9. :style="{ lineHeight: '64px' }"
  10. >
  11. <a-menu-item key="1">nav 1</a-menu-item>
  12. <a-menu-item key="2">nav 2</a-menu-item>
  13. <a-menu-item key="3">nav 3</a-menu-item>
  14. </a-menu>
  15. </a-layout-header>
  16. <a-layout-content style="padding: 0 50px">
  17. <a-breadcrumb style="margin: 16px 0">
  18. <a-breadcrumb-item>Home</a-breadcrumb-item>
  19. <a-breadcrumb-item>List</a-breadcrumb-item>
  20. <a-breadcrumb-item>App</a-breadcrumb-item>
  21. </a-breadcrumb>
  22. <a-layout style="padding: 24px 0; background: #fff">
  23. <a-layout-sider width="200" style="background: #fff">
  24. <a-menu
  25. mode="inline"
  26. :defaultSelectedKeys="['1']"
  27. :defaultOpenKeys="['sub1']"
  28. style="height: 100%"
  29. >
  30. <a-sub-menu key="sub1">
  31. <span slot="title"><a-icon type="user" />subnav 1</span>
  32. <a-menu-item key="1">option1</a-menu-item>
  33. <a-menu-item key="2">option2</a-menu-item>
  34. <a-menu-item key="3">option3</a-menu-item>
  35. <a-menu-item key="4">option4</a-menu-item>
  36. </a-sub-menu>
  37. <a-sub-menu key="sub2">
  38. <span slot="title"><a-icon type="laptop" />subnav 2</span>
  39. <a-menu-item key="5">option5</a-menu-item>
  40. <a-menu-item key="6">option6</a-menu-item>
  41. <a-menu-item key="7">option7</a-menu-item>
  42. <a-menu-item key="8">option8</a-menu-item>
  43. </a-sub-menu>
  44. <a-sub-menu key="sub3">
  45. <span slot="title"><a-icon type="notification" />subnav 3</span>
  46. <a-menu-item key="9">option9</a-menu-item>
  47. <a-menu-item key="10">option10</a-menu-item>
  48. <a-menu-item key="11">option11</a-menu-item>
  49. <a-menu-item key="12">option12</a-menu-item>
  50. </a-sub-menu>
  51. </a-menu>
  52. </a-layout-sider>
  53. <a-layout-content :style="{ padding: '0 24px', minHeight: '280px' }">
  54. Content
  55. </a-layout-content>
  56. </a-layout>
  57. </a-layout-content>
  58. <a-layout-footer style="text-align: center">
  59. Ant Design ©2018 Created by Ant UED
  60. </a-layout-footer>
  61. </a-layout>
  62. </template>
  63. <style>
  64. #components-layout-demo-top-side .logo {
  65. width: 120px;
  66. height: 31px;
  67. background: rgba(255,255,255,.2);
  68. margin: 16px 28px 16px 0;
  69. float: left;
  70. }
  71. </style>

Layout布局 - 图5

上中下布局

最基本的『上-中-下』布局。一般主导航放置于页面的顶端,从左自右依次为:logo、一级导航项、辅助菜单(用户、设置、通知等)。通常将内容放在固定尺寸(例如:1200px)内,整个页面排版稳定,不受用户终端显示器影响;上下级的结构符合用户上下浏览的习惯,也是较为经典的网站导航模式。页面上下切分的方式提高了主工作区域的信息展示效率,但在纵向空间上会有一些牺牲。此外,由于导航栏水平空间的限制,不适合那些一级导航项很多的信息结构。

  1. <template>
  2. <a-layout id="components-layout-demo-top" class="layout">
  3. <a-layout-header>
  4. <div class="logo" />
  5. <a-menu
  6. theme="dark"
  7. mode="horizontal"
  8. :defaultSelectedKeys="['2']"
  9. :style="{ lineHeight: '64px' }"
  10. >
  11. <a-menu-item key="1">nav 1</a-menu-item>
  12. <a-menu-item key="2">nav 2</a-menu-item>
  13. <a-menu-item key="3">nav 3</a-menu-item>
  14. </a-menu>
  15. </a-layout-header>
  16. <a-layout-content style="padding: 0 50px">
  17. <a-breadcrumb style="margin: 16px 0">
  18. <a-breadcrumb-item>Home</a-breadcrumb-item>
  19. <a-breadcrumb-item>List</a-breadcrumb-item>
  20. <a-breadcrumb-item>App</a-breadcrumb-item>
  21. </a-breadcrumb>
  22. <div :style="{ background: '#fff', padding: '24px', minHeight: '280px' }">Content</div>
  23. </a-layout-content>
  24. <a-layout-footer style="text-align: center">
  25. Ant Design ©2018 Created by Ant UED
  26. </a-layout-footer>
  27. </a-layout>
  28. </template>
  29. <style>
  30. #components-layout-demo-top .logo {
  31. width: 120px;
  32. height: 31px;
  33. background: rgba(255,255,255,.2);
  34. margin: 16px 24px 16px 0;
  35. float: left;
  36. }
  37. </style>

Layout布局 - 图6

响应式布局

Layout.Sider 支持响应式布局。

说明:配置 breakpoint 属性即生效,视窗宽度小于 breakpoint 时 Sider 缩小为 collapsedWidth 宽度,若将 collapsedWidth 设置为零,会出现特殊 trigger。

  1. <template>
  2. <a-layout id="components-layout-demo-responsive">
  3. <a-layout-sider
  4. breakpoint="lg"
  5. collapsedWidth="0"
  6. @collapse="onCollapse"
  7. @breakpoint="onBreakpoint"
  8. >
  9. <div class="logo" />
  10. <a-menu theme="dark" mode="inline" :defaultSelectedKeys="['4']">
  11. <a-menu-item key="1">
  12. <a-icon type="user" />
  13. <span class="nav-text">nav 1</span>
  14. </a-menu-item>
  15. <a-menu-item key="2">
  16. <a-icon type="video-camera" />
  17. <span class="nav-text">nav 2</span>
  18. </a-menu-item>
  19. <a-menu-item key="3">
  20. <a-icon type="upload" />
  21. <span class="nav-text">nav 3</span>
  22. </a-menu-item>
  23. <a-menu-item key="4">
  24. <a-icon type="user" />
  25. <span class="nav-text">nav 4</span>
  26. </a-menu-item>
  27. </a-menu>
  28. </a-layout-sider>
  29. <a-layout>
  30. <a-layout-header :style="{ background: '#fff', padding: 0 }" />
  31. <a-layout-content :style="{ margin: '24px 16px 0' }">
  32. <div :style="{ padding: '24px', background: '#fff', minHeight: '360px' }">
  33. content
  34. </div>
  35. </a-layout-content>
  36. <a-layout-footer style="textAlign: center">
  37. Ant Design ©2018 Created by Ant UED
  38. </a-layout-footer>
  39. </a-layout>
  40. </a-layout>
  41. </template>
  42. <script>
  43. export default {
  44. methods: {
  45. onCollapse(collapsed, type) {
  46. console.log(collapsed, type);
  47. },
  48. onBreakpoint(broken) {
  49. console.log(broken);
  50. }
  51. }
  52. }
  53. </script>
  54. <style>
  55. #components-layout-demo-responsive .logo {
  56. height: 32px;
  57. background: rgba(255,255,255,.2);
  58. margin: 16px;
  59. }
  60. </style>

Layout布局 - 图7

固定侧边栏

当内容较长时,使用固定侧边栏可以提供更好的体验。

  1. <template>
  2. <a-layout id="components-layout-demo-fixed-sider">
  3. <a-layout-sider :style="{ overflow: 'auto', height: '100vh', position: 'fixed', left: 0 }">
  4. <div class="logo"></div>
  5. <a-menu theme="dark" mode="inline" :defaultSelectedKeys="['4']">
  6. <a-menu-item key="1">
  7. <a-icon type="user" />
  8. <span class="nav-text">nav 1</span>
  9. </a-menu-item>
  10. <a-menu-item key="2">
  11. <a-icon type="video-camera" />
  12. <span class="nav-text">nav 2</span>
  13. </a-menu-item>
  14. <a-menu-item key="3">
  15. <a-icon type="upload" />
  16. <span class="nav-text">nav 3</span>
  17. </a-menu-item>
  18. <a-menu-item key="4">
  19. <a-icon type="bar-chart" />
  20. <span class="nav-text">nav 4</span>
  21. </a-menu-item>
  22. <a-menu-item key="5">
  23. <a-icon type="cloud-o" />
  24. <span class="nav-text">nav 5</span>
  25. </a-menu-item>
  26. <a-menu-item key="6">
  27. <a-icon type="appstore-o" />
  28. <span class="nav-text">nav 6</span>
  29. </a-menu-item>
  30. <a-menu-item key="7">
  31. <a-icon type="team" />
  32. <span class="nav-text">nav 7</span>
  33. </a-menu-item>
  34. <a-menu-item key="8">
  35. <a-icon type="shop" />
  36. <span class="nav-text">nav 8</span>
  37. </a-menu-item>
  38. </a-menu>
  39. </a-layout-sider>
  40. <a-layout :style="{ marginLeft: '200px' }">
  41. <a-layout-header :style="{ background: '#fff', padding: 0 }" />
  42. <a-layout-content :style="{ margin: '24px 16px 0', overflow: 'initial' }">
  43. <div :style="{ padding: '24px', background: '#fff', textAlign: 'center' }">
  44. ...
  45. <br />
  46. Really
  47. <br />...<br />...<br />...<br />
  48. long
  49. <br />...<br />...<br />...<br />...<br />...<br />...
  50. <br />...<br />...<br />...<br />...<br />...<br />...
  51. <br />...<br />...<br />...<br />...<br />...<br />...
  52. <br />...<br />...<br />...<br />...<br />...<br />...
  53. <br />...<br />...<br />...<br />...<br />...<br />...
  54. <br />...<br />...<br />...<br />...<br />...<br />...
  55. <br />...<br />...<br />...<br />...<br />...<br />
  56. content
  57. </div>
  58. </a-layout-content>
  59. <a-layout-footer :style="{ textAlign: 'center' }">
  60. Ant Design ©2018 Created by Ant UED
  61. </a-layout-footer>
  62. </a-layout>
  63. </a-layout>
  64. </template>
  65. <style>
  66. #components-layout-demo-fixed-sider .logo {
  67. height: 32px;
  68. background: rgba(255,255,255,.2);
  69. margin: 16px;
  70. }
  71. </style>

Layout布局 - 图8

固定头部

一般用于固定顶部导航,方便页面切换。

  1. <template>
  2. <a-layout id="components-layout-demo-fixed">
  3. <a-layout-header :style="{ position: 'fixed', zIndex: 1, width: '100%' }">
  4. <div class="logo" />
  5. <a-menu
  6. theme="dark"
  7. mode="horizontal"
  8. :defaultSelectedKeys="['2']"
  9. :style="{ lineHeight: '64px' }"
  10. >
  11. <a-menu-item key="1">nav 1</a-menu-item>
  12. <a-menu-item key="2">nav 2</a-menu-item>
  13. <a-menu-item key="3">nav 3</a-menu-item>
  14. </a-menu>
  15. </a-layout-header>
  16. <a-layout-content :style="{ padding: '0 50px', marginTop: '64px' }">
  17. <a-breadcrumb :style="{ margin: '16px 0' }">
  18. <a-breadcrumb-item>Home</a-breadcrumb-item>
  19. <a-breadcrumb-item>List</a-breadcrumb-item>
  20. <a-breadcrumb-item>App</a-breadcrumb-item>
  21. </a-breadcrumb>
  22. <div :style="{ background: '#fff', padding: '24px', minHeight: '380px' }">Content</div>
  23. </a-layout-content>
  24. <a-layout-footer :style="{ textAlign: 'center' }">
  25. Ant Design ©2018 Created by Ant UED
  26. </a-layout-footer>
  27. </a-layout>
  28. </template>
  29. <style>
  30. #components-layout-demo-fixed .logo {
  31. width: 120px;
  32. height: 31px;
  33. background: rgba(255,255,255,.2);
  34. margin: 16px 24px 16px 0;
  35. float: left;
  36. }
  37. </style>

Layout布局 - 图9

侧边布局

侧边两列式布局。页面横向空间有限时,侧边导航可收起。侧边导航在页面布局上采用的是左右的结构,一般主导航放置于页面的左侧固定位置,辅助菜单放置于工作区顶部。内容根据浏览器终端进行自适应,能提高横向空间的使用率,但是整个页面排版不稳定。侧边导航的模式层级扩展性强,一、二、三级导航项目可以更为顺畅且具关联性的被展示,同时侧边导航可以固定,使得用户在操作和浏览中可以快速的定位和切换当前位置,有很高的操作效率。但这类导航横向页面内容的空间会被牺牲一部份。

  1. <template>
  2. <a-layout id="components-layout-demo-side" style="min-height: 100vh">
  3. <a-layout-sider
  4. collapsible
  5. v-model="collapsed"
  6. >
  7. <div class="logo" />
  8. <a-menu theme="dark" :defaultSelectedKeys="['1']" mode="inline">
  9. <a-menu-item key="1">
  10. <a-icon type="pie-chart" />
  11. <span>Option 1</span>
  12. </a-menu-item>
  13. <a-menu-item key="2">
  14. <a-icon type="desktop" />
  15. <span>Option 2</span>
  16. </a-menu-item>
  17. <a-sub-menu
  18. key="sub1"
  19. >
  20. <span slot="title"><a-icon type="user" /><span>User</span></span>
  21. <a-menu-item key="3">Tom</a-menu-item>
  22. <a-menu-item key="4">Bill</a-menu-item>
  23. <a-menu-item key="5">Alex</a-menu-item>
  24. </a-sub-menu>
  25. <a-sub-menu
  26. key="sub2"
  27. >
  28. <span slot="title"><a-icon type="team" /><span>Team</span></span>
  29. <a-menu-item key="6">Team 1</a-menu-item>
  30. <a-menu-item key="8">Team 2</a-menu-item>
  31. </a-sub-menu>
  32. <a-menu-item key="9">
  33. <a-icon type="file" />
  34. <span>File</span>
  35. </a-menu-item>
  36. </a-menu>
  37. </a-layout-sider>
  38. <a-layout>
  39. <a-layout-header style="background: #fff; padding: 0" />
  40. <a-layout-content style="margin: 0 16px">
  41. <a-breadcrumb style="margin: 16px 0">
  42. <a-breadcrumb-item>User</a-breadcrumb-item>
  43. <a-breadcrumb-item>Bill</a-breadcrumb-item>
  44. </a-breadcrumb>
  45. <div :style="{ padding: '24px', background: '#fff', minHeight: '360px' }">
  46. Bill is a cat.
  47. </div>
  48. </a-layout-content>
  49. <a-layout-footer style="text-align: center">
  50. Ant Design ©2018 Created by Ant UED
  51. </a-layout-footer>
  52. </a-layout>
  53. </a-layout>
  54. </template>
  55. <script>
  56. export default {
  57. data() {
  58. return {
  59. collapsed: false,
  60. }
  61. },
  62. }
  63. </script>
  64. <style>
  65. #components-layout-demo-side .logo {
  66. height: 32px;
  67. background: rgba(255,255,255,.2);
  68. margin: 16px;
  69. }
  70. </style>

API

  1. <Layout>
  2. <Header>header</Header>
  3. <Layout>
  4. <Sider>left sidebar</Sider>
  5. <Content>main content</Content>
  6. <Sider>right sidebar</Sider>
  7. </Layout>
  8. <Footer>footer</Footer>
  9. </Layout>

Layout

布局容器。

参数说明类型默认值
class容器 classstring-
style指定样式object-
hasSider表示子元素里有 Sider,一般不用指定。可用于服务端渲染时避免样式闪动boolean-

Layout.Header Layout.Footer Layout.Content API 与 Layout 相同

Layout.Sider

侧边栏。

参数说明类型默认值
breakpoint触发响应式布局的断点Enum { 'xs', 'sm', 'md', 'lg', 'xl', 'xxl' }-
class容器 classstring-
collapsed(v-model)当前收起状态boolean-
collapsedWidth收缩宽度,设置为 0 会出现特殊 triggernumber80
collapsible是否可收起booleanfalse
defaultCollapsed是否默认收起booleanfalse
reverseArrow翻转折叠提示箭头的方向,当 Sider 在右边时可以使用booleanfalse
style指定样式object|string-
theme主题颜色string: light darkdark
trigger自定义 trigger,设置为 null 时隐藏 triggerstring|slot-
width宽度number|string200

事件

事件名称说明回调参数
collapse展开-收起时的回调函数,有点击 trigger 以及响应式反馈两种方式可以触发(collapsed, type) => {}
breakpoint触发响应式布局断点时的回调(broken) => {}

breakpoint width

  1. {
  2. xs: '480px',
  3. sm: '576px',
  4. md: '768px',
  5. lg: '992px',
  6. xl: '1200px',
  7. xxl: '1600px',
  8. }