<template>
|
<!-- <avue-data-box :option="option"></avue-data-box> -->
|
|
<!-- <div v-for="item in items" :key="item.id"> -->
|
<div id="">
|
|
<div id="" v-for="(item,index) in 10">
|
<el-row>
|
<el-col :span="24">
|
<div class="grid-content bg-purple-dark">
|
<el-tag type="danger">标签五</el-tag>
|
</div>
|
</el-col>
|
</el-row>
|
|
<el-row>
|
<el-col :span="24">
|
<div class="grid-content bg-purple-dark">
|
<el-divider content-position="left">少年包青天</el-divider>
|
</div>
|
</el-col>
|
</el-row>
|
|
<!-- <el-row :gutter="20">
|
<el-col :span="6">
|
<div class="grid-content bg-purple"></div>
|
</el-col>
|
<el-col :span="6">
|
<div class="grid-content bg-purple"></div>
|
</el-col>
|
<el-col :span="6">
|
<div class="grid-content bg-purple"></div>
|
</el-col>
|
<el-col :span="6">
|
<div class="grid-content bg-purple"></div>
|
</el-col>
|
</el-row> -->
|
|
<div id="" v-for="(item,index) in 10" style="display: flex;">
|
<div id="">
|
{{index}}
|
</div>
|
</div>
|
|
|
</div>
|
|
</div>
|
|
<!-- </div> -->
|
|
</template>
|
<script>
|
export default {
|
data() {
|
return {
|
items: [],
|
option: {
|
span: 4,
|
data: []
|
},
|
}
|
}
|
}
|
</script>
|
|
<style>
|
/* .el-row {
|
margin-bottom: 20px;
|
|
&:last-child {
|
margin-bottom: 0;
|
}
|
}
|
|
.el-col {
|
border-radius: 4px;
|
}
|
|
.bg-purple-dark {
|
background: #99a9bf;
|
}
|
|
.bg-purple {
|
background: #d3dce6;
|
}
|
|
.bg-purple-light {
|
background: #e5e9f2;
|
}
|
|
.grid-content {
|
border-radius: 4px;
|
min-height: 36px;
|
}
|
|
.row-bg {
|
padding: 10px 0;
|
background-color: #f9fafc;
|
} */
|
</style>
|