|
@@ -73,12 +73,30 @@
|
|
|
|
|
|
----
|
|
|
|
|
|
-<lv-icon type="add" :fontSize="fontSize" :color="fontColor"></lv-icon>
|
|
|
-<lv-icon type="wechat" :fontSize="fontSize" :color="fontColor"></lv-icon>
|
|
|
-<lv-icon type="friend" :fontSize="fontSize" :color="fontColor"></lv-icon>
|
|
|
-<lv-icon type="addRound" :fontSize="fontSize" :color="fontColor"></lv-icon>
|
|
|
-<lv-icon type="share" :fontSize="fontSize" :color="fontColor"></lv-icon>
|
|
|
-<lv-icon type="thumbs" :fontSize="fontSize" :color="fontColor"></lv-icon>
|
|
|
+<div class="icon">
|
|
|
+ <lv-icon type="add" :fontSize="fontSize" :color="fontColor"></lv-icon>
|
|
|
+ <div class="unicode">&#xe600;</div>
|
|
|
+</div>
|
|
|
+<div class="icon">
|
|
|
+ <lv-icon type="wechat" :fontSize="fontSize" :color="fontColor"></lv-icon>
|
|
|
+ <div class="unicode">&#xe609;</div>
|
|
|
+</div>
|
|
|
+<div class="icon">
|
|
|
+ <lv-icon type="friend" :fontSize="fontSize" :color="fontColor"></lv-icon>
|
|
|
+ <div class="unicode">&#xe60b;</div>
|
|
|
+</div>
|
|
|
+<div class="icon">
|
|
|
+ <lv-icon type="addRound" :fontSize="fontSize" :color="fontColor"></lv-icon>
|
|
|
+ <div class="unicode">&#xe608;</div>
|
|
|
+</div>
|
|
|
+<div class="icon">
|
|
|
+ <lv-icon type="share" :fontSize="fontSize" :color="fontColor"></lv-icon>
|
|
|
+ <div class="unicode">&#xe610;</div>
|
|
|
+</div>
|
|
|
+<div class="icon">
|
|
|
+ <lv-icon type="thumbs" :fontSize="fontSize" :color="fontColor"></lv-icon>
|
|
|
+ <div class="unicode">&#xe611;</div>
|
|
|
+</div>
|
|
|
|
|
|
```vue
|
|
|
<lv-icon type="add" fontSize="60"></lv-icon>
|
|
@@ -162,4 +180,14 @@ th {
|
|
|
color: #000;
|
|
|
background-color: #eee;
|
|
|
}
|
|
|
+.icon {
|
|
|
+ margin: 0 10px;
|
|
|
+ text-align: center;
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+.icon .unicode {
|
|
|
+ color: #666;
|
|
|
+ font-size: 14px;
|
|
|
+ margin-top: 6px;
|
|
|
+}
|
|
|
</style>
|