35 lines
708 B
Plaintext
35 lines
708 B
Plaintext
# 图标临时使用方案
|
||
|
||
由于无法直接下载图标,提供以下临时方案:
|
||
|
||
## 方案1: 使用 RemixIcon CDN(推荐)
|
||
|
||
在页面中直接使用在线图标库,无需下载:
|
||
|
||
```html
|
||
<!-- 在需要图标的地方使用 -->
|
||
<text class="iconfont"></text>
|
||
```
|
||
|
||
在 `App.vue` 的 `<style>` 中添加:
|
||
|
||
```css
|
||
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');
|
||
|
||
.iconfont {
|
||
font-family: 'remixicon', sans-serif;
|
||
}
|
||
```
|
||
|
||
## 方案2: 创建临时SVG图标
|
||
|
||
我为您创建一个临时图标生成工具文件。
|
||
|
||
## 方案3: 使用纯色占位图标
|
||
|
||
创建简单的圆形/方形图标作为临时方案。
|
||
|
||
---
|
||
|
||
**推荐使用方案1,最快最简单!**
|