mirror of
https://github.com/element-plus/element-plus.git
synced 2025-03-07 15:47:57 +08:00
* docs: standardize unified example code format and fix some example type * docs: update some example type * Update docs/examples/descriptions/sizes.vue Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com> * docs: update example-page-header * docs: update example-page-header --------- Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
39 lines
784 B
Vue
39 lines
784 B
Vue
<template>
|
|
<el-row :gutter="20">
|
|
<el-col :span="6"><div class="grid-content ep-bg-purple" /></el-col>
|
|
<el-col :span="6" :offset="6">
|
|
<div class="grid-content ep-bg-purple" />
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="6" :offset="6">
|
|
<div class="grid-content ep-bg-purple" />
|
|
</el-col>
|
|
<el-col :span="6" :offset="6">
|
|
<div class="grid-content ep-bg-purple" />
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="20">
|
|
<el-col :span="12" :offset="6">
|
|
<div class="grid-content ep-bg-purple" />
|
|
</el-col>
|
|
</el-row>
|
|
</template>
|
|
|
|
<style>
|
|
.el-row {
|
|
margin-bottom: 20px;
|
|
}
|
|
.el-row:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.el-col {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.grid-content {
|
|
border-radius: 4px;
|
|
min-height: 36px;
|
|
}
|
|
</style>
|