function search() {
matchingMembers.value = props.story.content.members.filter((member) => {
return (
member.tags.some((tag) => {
return tag.text.toLowerCase().includes(query.value.toLowerCase());
}) ||
member.name.toLowerCase().includes(query.value.toLowerCase()) ||
member.role.toLowerCase().includes(query.value.toLowerCase()) ||
member.description.toLowerCase().includes(query.value.toLowerCase()) ||
member.desk.toLowerCase().includes(query.value.toLowerCase())
);
});
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter