fix: replaced checkedValue with modelValue

This commit is contained in:
Danny Moerkerke 2022-05-16 12:11:59 +02:00
parent 0ee55369bc
commit 466471cbe9

View file

@ -198,7 +198,7 @@ export const checkedIndexAndValue = ({ shadowRoot }) => html`
@click=${() => {
const selectEl = shadowRoot.querySelector('#checkedRichSelect');
console.log(`checkedIndex: ${selectEl.checkedIndex}`);
console.log(`checkedValue: ${selectEl.checkedValue}`);
console.log(`modelValue: ${selectEl.modelValue}`);
}}
>
Console log checked index and value