标签:pre 删除 使用 admin sharp charts app element arp
默认示例
<template>
<div>
<el-row :gutter="0">
<el-col :xs="24" :sm="24" :lg="8">
<div class="chart-wrapper">
<health-check-line />
</div>
</el-col>
<el-col :xs="24" :sm="24" :lg="8">
<div class="chart-wrapper">
<health-check-pie />
</div>
</el-col>
</el-row>
</div>
</template>
修改
<template>
<div>
<el-row :gutter="0">
<!-- <el-col :xs="24" :sm="24" :lg="8" :span="10"> -->
<el-col :span="12"> # 将xs、sm、lg删除,然后使用span分
<div class="chart-wrapper">
<health-check-line />
</div>
</el-col>
<!-- <el-col :xs="24" :sm="24" :lg="8" :span="10"> -->
<el-col :span="12">
<div class="chart-wrapper">
<health-check-pie />
</div>
</el-col>
</el-row>
</div>
</template>
标签:pre 删除 使用 admin sharp charts app element arp
原文地址:https://www.cnblogs.com/robinunix/p/12059602.html