fix: replaced checkedValue with modelValue
This commit is contained in:
parent
0ee55369bc
commit
466471cbe9
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue