Skip to content
On this page

Layout 布局

处理常见的一些网页布局,实现快速搭建

基本使用

  • f-layout 外层容器, 可以实现垂直、水平、嵌套布局
  • f-main 主体容器
  • f-header 头部容器
  • f-aside 侧栏容器
  • f-footer 底栏容器

基本布局

下面是由 Fighting Design 提供的几种常见的页面布局演示

Main


Main
Footer


Main


Main


Main


Main


Main
Footer


Main


Main
Footer
开启

layout Attributes

参数说明类型可选值默认值
direction排列方向LayoutDirectionhorizontal vertical——

Header Attributes

参数说明类型可选值默认值
height高度string / number————
padding内边距string / number————

Main Attributes

参数说明类型可选值默认值
padding内边距string / number————

Aside Attributes

参数说明类型可选值默认值
width宽度string / number————
padding内边距string / number————
参数说明类型可选值默认值
height高度string / number————
padding内边距string / number————

Interface

组件导出以下类型定义:

ts
import type {
  AsideProps,
  AsideInstance,
  FooterInstance,
  FooterProps,
  HeaderInstance,
  HeaderProps,
  LayoutInstance,
  LayoutProps,
  LayoutDirection,
  MainInstance,
  MainProps
} from 'fighting-design'

LayoutDirection

ts
type LayoutDirection = 'horizontal' | 'vertical'

Contributors