html代码
<van-search
v-model="keyword"
shape="round"
background="#ffffff"
placeholder="输入关键词"
clearable
clear-trigger="always"
style="padding:10px 20px 12px"
@cancel="onCancel"
>
<template v-slot:left-icon>
<slot><img class="search_icon" src="~@/assets/images/icon_search.png" alt=""></slot>
</template>
</van-search>
css部分一开始我是这样写的
/deep/ .van-icon:before{
content:url('~@/assets/images/icon_search_delete.png');
height: 16px;
width:16px;
}
效果
代码改成
/deep/ .van-icon:before{
display: inline-block;
width: 16px;
height: 16px;
content: "";
background: url("~@/assets/images/icon_search_delete.png") no-repeat 0 0;
background-size: 100%;
}
效果