export const intercept = () => html`<plural-dropdown
@model-value-changed=${({ target }) => {
console.log(`updated value: ${target.modelValue}`);
console.log(`checked index: ${target.checkedIndex}`);
<plural-option .choiceValue=${''} hidden>Placeholder</plural-option>
<plural-option .choiceValue=${'red'}>Red</plural-option>
<plural-option .choiceValue=${'hotpink'} checked>Hotpink</plural-option>
<plural-option .choiceValue=${'blue'}>Blue</plural-option>