Skip to content
On this page

Grid

Grid is a layout component that allows you to separate content in a consistent way.

Basic Usage

Basic 24 parts grid layout with 5px spacing between columns

col-12
col-12
You can use the lu-Grid component to separate content in a consistent way.
<template>
  <lu-row>
    <lu-col :span="12">
      <div>col-12</div>
    </lu-col>
    <lu-col :span="12">
      <div>col-12</div>
    </lu-col>
  </lu-row>
</template>

<style lang="scss" scoped>
.lu-row {
  background-color: #f5f5f5;
  padding: 5px;
}
</style>

Props

NameDescriptionTypeDefault
sizesizenumber | string5px

Slots

NameDescriptionTypeSubtags
defaultcontentany-

© 2023 ziyiLike