feat(List): add role and tabindex for a11y (#9888)

This commit is contained in:
neverland 2021-11-17 16:31:00 +08:00 committed by GitHub
parent 0dd93a0032
commit 5f7e65b637
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -115,7 +115,12 @@ export default defineComponent({
const text = slots.error ? slots.error() : props.errorText; const text = slots.error ? slots.error() : props.errorText;
if (text) { if (text) {
return ( return (
<div class={bem('error-text')} onClick={clickErrorText}> <div
role="button"
class={bem('error-text')}
tabindex={0}
onClick={clickErrorText}
>
{text} {text}
</div> </div>
); );

View File

@ -5,7 +5,10 @@ exports[`should render error slot correctly 1`] = `
class="van-list" class="van-list"
aria-busy="false" aria-busy="false"
> >
<div class="van-list__error-text"> <div role="button"
class="van-list__error-text"
tabindex="0"
>
Custom Error Custom Error
</div> </div>
<div class="van-list__placeholder"> <div class="van-list__placeholder">