fix: 🐛 移除unplugin-icon插件,避免vue-template-compiler编译器在某些机器引发的报错
This commit is contained in:
@@ -6,10 +6,13 @@
|
||||
<div class="flex-y-center">
|
||||
访问趋势
|
||||
<el-tooltip effect="dark" content="点击试试下载" placement="bottom">
|
||||
<i-ep-download
|
||||
<el-icon
|
||||
class="cursor-pointer hover:color-#4080FF ml-1"
|
||||
name="el-icon-download"
|
||||
@click="handleDownloadChart"
|
||||
/>
|
||||
>
|
||||
<Download />
|
||||
</el-icon>
|
||||
</el-tooltip>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -121,8 +121,10 @@
|
||||
getGrowthRateClass(item.growthRate),
|
||||
]"
|
||||
>
|
||||
<i-ep-top v-if="item.growthRate > 0" />
|
||||
<i-ep-bottom v-else-if="item.growthRate < 0" />
|
||||
<el-icon>
|
||||
<Top v-if="item.growthRate > 0" />
|
||||
<Bottom v-else-if="item.growthRate < 0" />
|
||||
</el-icon>
|
||||
{{ formatGrowthRate(item.growthRate) }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user