项目作者: vue-a11y

项目描述 :
Accessibility auditing for Vue.js 3 applications using axe-core
高级语言: Vue
项目地址: git://github.com/vue-a11y/vue-axe-next.git
创建时间: 2020-09-26T14:52:31Z
项目社区:https://github.com/vue-a11y/vue-axe-next

开源协议:MIT License

下载



Vue Axe logo

@vue-a11y/axe

Accessibility auditing for Vue.js 3 applications by running dequelabs/axe-core validation on the page you’re viewing.

Setup

  1. npm install -D axe-core vue-axe@next
  2. # or
  3. yarn add -D axe-core vue-axe@next

main.js

  1. import { createApp, h, Fragment } from 'vue'
  2. import App from './App.vue'
  3. let app = null
  4. if (process.env.NODE_ENV === 'development') {
  5. const VueAxe = require('vue-axe')
  6. app = createApp({
  7. render: () => h(Fragment, [h(App), h(VueAxe.VueAxePopup)])
  8. })
  9. app.use(VueAxe.default)
  10. } else {
  11. app = createApp(App)
  12. }
  13. app.mount('#app')

Vite

In Vite you need to add axe-core in the dependency optimization option (optimizeDeps).

In your vite.config.js

  1. import vue from '@vitejs/plugin-vue'
  2. export default {
  3. plugins: [vue()],
  4. optimizeDeps: {
  5. include: ['axe-core']
  6. }
  7. }

Options

auto

Type Default
Boolean true

If false disables automatic verification.
It is necessary to click on run again for a new analysis.

config

Type Default
Object { branding: { application: 'vue-axe' }

To configure the format of the data used by axe.
This can be used to add new rules, which must be registered with the library to execute.

NOTE: Learn more about Axe-core configuration

runOptions

Type Default
Object { runOptions: { reporter: 'v2', resultTypes: ['violations'] }

Flexible way to configure how axeCore.run() operates.

NOTE: Learn more about Axe-core runtime options

plugins

Type
Array

Register Axe plugins.

  1. const plugins = require('@/plugins/axe')
  2. app.use(VueAxe, {
  3. plugins: [plugins.myPlugin, plugins.myPlugin2]
  4. })

Locales

Through the settings it is possible to define the language that will be used for the violations.

NOTE: axe-core already has several languages ​​available.
See axe-core locales

  1. const ptBR = require('axe-core/locales/pt_BR.json')
  2. app.use(VueAxe, {
  3. config: {
  4. locale: ptBR
  5. }
  6. })

Roadmap

  • Enable highlighting of elements with errors on the page;
  • i18n;
  • Announce “views” changes to the screen reader;
  • New documentation;
  • Add focus trap in the popup;
  • How to use (Vite)
  • Add links (references file) to learn more;
  • Typescript support;
  • Add keyboard shortcut to open pop-up;
  • Animation slide-right (to details view) & slide-left (to violations view);
  • Carousel to element source when greater than 3;
  • Export violations (Output format to be defined);

Contributing

  • From typos in documentation to coding new features;
  • Check the open issues or open a new issue to start a discussion around your feature idea or the bug you found;
  • Fork repository, make changes and send a pull request;

Follow us on Twitter @vue_a11y

Thank you