Philipp Stappert
Results
2
comments of
Philipp Stappert
there is a `list-unsubscribe` header in most newsletters/mailing lists with a link to unsubscribe. See RFC2369: https://datatracker.ietf.org/doc/html/rfc2369
I built a workaround like that: ```vue ``` and the function: ```ts function removeOption(item: string) { const index = searchValue.value.indexOf(item); if (index !== -1) { searchValue.value.splice(index, 1); } } ```...