This module integrates Axe tool for auditing website against common Accessibility (A11Y) issues.
yarn add --dev nuxt-a11y # yarn
npm i --save-dev nuxt-a11y # npm
The only thing you need to do to use the module in the default configuration is to register the module in the modules
array in nuxt.config.ts
:
// nuxt.config.js
{
modules: ["nuxt-a11y"],
}
And that's it! You can now use the useA11y
composable in your Nuxt app:
<script setup lang="ts">
const violations = useA11y()
</script>
Now, you have access to the violations that were found by the Axe A11Y tool on the current page. The structure of each violation objects looks more or less like this:
interface Result {
description: string;
help: string;
helpUrl: string;
id: string;
impact?: ImpactValue;
tags: TagValue[];
nodes: NodeResult[];
}
- Run
npm run dev:prepare
to generate type stubs. - Use
npm run dev
to start playground in development mode.