mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +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;
|
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>
|
||||||
);
|
);
|
||||||
|
@ -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">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user