.swatch_picker
el-autocomplete(
v-model="swatch_name"
:fetch-suggestions="fetch_suggestions"
placeholder="search for a color"
@select="select"
)
i.el-icon-search.el-input__icon(slot="suffix", :style="{backgroundColor: swatch.hex}")
template(slot-scope="props")
div
span.name {{props.item.value}}
span.preview.pull-right(:style="{backgroundColor: props.item.hex}")