mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
feat(List): add role and tabindex for a11y (#9888)
This commit is contained in:
parent
0dd93a0032
commit
5f7e65b637
@ -115,7 +115,12 @@ export default defineComponent({
|
||||
const text = slots.error ? slots.error() : props.errorText;
|
||||
if (text) {
|
||||
return (
|
||||
<div class={bem('error-text')} onClick={clickErrorText}>
|
||||
<div
|
||||
role="button"
|
||||
class={bem('error-text')}
|
||||
tabindex={0}
|
||||
onClick={clickErrorText}
|
||||
>
|
||||
{text}
|
||||
</div>
|
||||
);
|
||||
|
@ -5,7 +5,10 @@ exports[`should render error slot correctly 1`] = `
|
||||
class="van-list"
|
||||
aria-busy="false"
|
||||
>
|
||||
<div class="van-list__error-text">
|
||||
<div role="button"
|
||||
class="van-list__error-text"
|
||||
tabindex="0"
|
||||
>
|
||||
Custom Error
|
||||
</div>
|
||||
<div class="van-list__placeholder">
|
||||
|
Loading…
x
Reference in New Issue
Block a user