2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-10 07:52:23 +03:00

add accessibility documentation (#867)

This commit is contained in:
Jeff Sagal
2019-04-29 22:08:56 -07:00
committed by GitHub
parent ab99763981
commit 5492ee1126
6 changed files with 87 additions and 12 deletions
+7 -3
View File
@@ -1,12 +1,16 @@
## RTL
## Right to Left
vue-select supports RTL using the standard HTML API using the `dir` attribute.
Vue Select supports RTL using the standard HTML API using the `dir` prop.
```html
<v-select dir="rtl"></v-select>
```
The `dir` attribute accepts the same values as the [HTML spec](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/dir): `rtl`,`ltr`, and `auto`.
The `dir` prop accepts the same values as the [HTML spec](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/dir):
- `rtl`
- `ltr`
- `auto`
## Component Text