nuxt-libras
v1.1.3
Published
Vlibras is a Nuxt module to integrate the VLibras accessibility tool into your Nuxt applications.
Readme
Nuxt VLibras
This module allows you to easily integrate Vlibras, a translation tool designed to provide accessibility for deaf people, into your application. It enables users to visualize the application's text in sign language.
Quick Setup
Install the module to your Nuxt application with one command:
npx nuxt module add nuxt-librasYou need to add the VLibras component to your app.vue file.
<template>
<div>
<p>My Nuxt Application</p>
<VLibras />
</div>
</template>
Now you just need to access your application to see how vlibras works.✨
Contribution
# Install dependencies
pnpm install
# Generate type stubs
pnpm run dev:prepare
# Develop with the playground
pnpm run dev
# Build the playground
pnpm run dev:build
# Run ESLint
pnpm run lint
# Run Vitest
pnpm run test
pnpm run test:watch
# Release new version
pnpm run release