refs #517 Show icon image in suggest
This commit is contained in:
parent
810a0660aa
commit
adb7177d95
|
@ -22,6 +22,9 @@
|
||||||
@shortkey="insertItem(item)"
|
@shortkey="insertItem(item)"
|
||||||
@mouseover="highlightedIndex = index"
|
@mouseover="highlightedIndex = index"
|
||||||
:class="{'highlighted': highlightedIndex === index}">
|
:class="{'highlighted': highlightedIndex === index}">
|
||||||
|
<span v-if="item.image">
|
||||||
|
<img :src="item.image" class="icon" />
|
||||||
|
</span>
|
||||||
{{ item.name }}
|
{{ item.name }}
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -236,6 +239,13 @@ export default {
|
||||||
line-height: 34px;
|
line-height: 34px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlighted {
|
.highlighted {
|
||||||
|
|
Loading…
Reference in New Issue