Skip to content

vue-dev-tools-accessibility/v0

Repository files navigation

UI for v0.x.x of Vue-Dev-Tools-Accessibility

Running Locally

  1. Install Volta
  2. Clone the repo
  3. npm i && npm start
  4. From here you can do basic UI development in the browser.

If you want to test with it embedded in the Vite-Vue-DevTools:

  1. In another repo that is a Vue 3 app using Vite and Vite-Vue-DevTools, install the plugin:
    • npm install --save-dev vue-dev-tools-accessibility
  2. Add the plugin to the Vite config
    // vite.config.js
    import vue from '@vitejs/plugin-vue';
    import { defineConfig } from 'vite';
    import vueDevTools from 'vite-plugin-vue-devtools';
    import vueDevToolsAccessibility from '../vue-dev-tools-accessibility/index.js';
    
    export default defineConfig({
      plugins: [
        vue(),
        vueDevTools(),
        vueDevToolsAccessibility()
      ]
    });
  3. Start the other repo's server with an environment variable to load v0 locally instead of from the internet.
    • "start": "cross-env VITE_A11Y=local",

About

UI for v0.x.x of Vue-Dev-Tools-Accessibility

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published