slots: {
default: () => {
return (
<div class="pic">
{leftImg.value.map((item, index) => (
<ElImage
onClick={() => hitPic(index)}
style={{
height: 'auto',
width: '250px',
margin: '0 5px',
border: selectPic.value === index ? '1px dashed #a8b1c5' : 'none'
}}
fit="fill"
src={item}
/>
))}
</div>
)
}
}